what does a .php?id=&value=value means?

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.

Leave a Comment