Jump to content

Is This Right


Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.