¿Qué significa .php?id=&value=value? [cerrado]
Frecuentes
Visto 1,853 veces
1 Respuestas
4
Password and submit are URL parameters made available to the .php script via the global variable $_GET:
$_GET['password']
$_GET['submit']
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 php html url get or haz tu propia pregunta.
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. - John Conde
$_GET['password']
se mostrarán''
y$_GET['submit']
se mostrarán'submit'
. - sybearaldeid.com/wiki/Hackthissite/Realistic/Level5 - Amal Murali
p.s. that's not PHP in the URL - Paul Dessert