vasoftwaresolutions Posted March 11, 2008 Share Posted March 11, 2008 hello, My string below i think is correct but when i apply it .. it inserts it into the database as nothing just a entry thats blank. here is my code.. any help is appresheated <?php $hostname = "localhost"; $database = "pacifij1_blue"; $username = "pacifij1_blue"; $password = "8336994895"; $vrbo = mysql_connect($hostname, $username, $password) or die(mysql_error()); mysql_select_db($database, $vrbo); $query_in = "INSERT INTO pilot (first_name, last_name, password, email, hub, city, state, country, about) VALUES ('$first_name', '$last_name', '$password', '$email', '$hub', '$city', '$state', '$country', '$about')"; $in = mysql_query($query_in, $vrbo) or die(mysql_error()); header('Location: index.php'); ?> Link to comment https://forums.phpfreaks.com/topic/95685-is-this-right/ Share on other sites More sharing options...
CMC Posted March 11, 2008 Share Posted March 11, 2008 where are the variables set? Link to comment https://forums.phpfreaks.com/topic/95685-is-this-right/#findComment-489885 Share on other sites More sharing options...
vasoftwaresolutions Posted March 11, 2008 Author Share Posted March 11, 2008 AH THANKS.. i forgot to post the varibles.. lol Link to comment https://forums.phpfreaks.com/topic/95685-is-this-right/#findComment-489886 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.