[Solved] what does a .php?id=&value=value means? [closed]


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

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

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

1

solved what does a .php?id=&value=value means? [closed]