i have a script which points to the following url http://localhost/sendsms.php?user=nomi i want to make a script sendsms.php which gets the user info from the database and displays all of the information of that particular user in the url like http://localhost/sendsms.php?user=????? i have been trying with $_get but could not get it right plz help me
Send parameters possible only separately: user=nomi&password=123&about=bugaga Or String user=nomi/123/bugaga Which come to analyse in sendsms.php.
you did not understand my problem the problem is that i get the url http://localhost/sendsms.php?user=??? from the CMS i am using now i want to create a custom page which gets the user ??? from the above url and selects this ??? user's mobile number from the database.
Can Not understand since russian. Signifies script gets the reference. That it is necessary to do with her?
cant you just do if(isset($_GET['user'])){ $user = $_GET['user']; $sql = mysql_query("SELECT * FROM members WHERE username='$user'"); // Whatever you want to do, once you get the user name } PHP: