¿Qué significa .php?id=&value=value? [cerrado]

what does the id = &value = value means? what does & stands for?

preguntado el 02 de diciembre de 13 a las 19:12

This question appears to be off-topic because it is not about code you've written. Stack Overflow is not for speculating about what other sites are doing. -

$_GET['password'] se mostrarán '' y $_GET['submit'] se mostrarán 'submit'. -

p.s. that's not PHP in the URL -

1 Respuestas

Password and submit are URL parameters made available to the .php script via the global variable $_GET:

$_GET['password']
$_GET['submit']

Ver http://php.net/manual/en/reserved.variables.get.php.

Respondido el 02 de diciembre de 13 a las 19:12

It's also worth mentioning that $_GET['password'] (in this case) isn't set to anything. - rwd

No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas or haz tu propia pregunta.