Jump to content

Submit info to DB


Jay2391

Recommended Posts

I created thsi code is just to submit info to a database... but it dosen't submit the information

database name    natgal
table                  users



<html>
<head>
<title>Record</title></head>
<body>

<?php

$user = "root";
$pass = "12345";
   
$self = $_SERVER['PHP_SELF'];
$userid = $_POST['userid'];
$name = $_POST['name'];
$last = $_POST['last'];
$city = $_POST['city'];
$state = $_POST['state'];
$country = $_POST['coutry'];
$email = $_POST['email'];
$gender = $_POST['gender'];
$nickname = $_POST['nickname'];
$age = $_POST['age'];

?>

<form action="<?php echo( $self ); ?>" method="post">
Registration Screen <br><br>
User ID: <input type="text" name="userid" size="30"><br>
First Name: <input type="text" name="name" size="30"><br>
Last Name: <input type="text" name="last" size="30"><br>
City: <input type="text" name="city" size="30"><br>
State: <input type="text" name="state" size="30"><br>
Coutry: <input type="text" name="country" size="30"><br>
E-mail: <input type="text" name="email" size="30"><br>
Gender: <input type="text" name="gender" size="30"><br>
Nick Name: <input type="text" name="nickname" size="30"><br>
Age: <input type="text" name="age" size="30"><br><br>

<input type="submit" value="Submit"><br>
</form>

<?php

  if( $self and $userid and $name and $last and $city and $state and $country and $email and $gender and $nickname and $age ){

  $conn=mysql_connect ("localhost", $user, $pass)
  or die ('I cannot connect to the database because: ' . mysql_error());
  mysql_select_db ("natgal");

   
  $sql = "insert into users ( userid, name, last, city, state, country, email, gender, nickname, age) values ( $userid, \"$name\", \"$last\", \"$city\",\"$state\", \"$country\", \"$email\", \"$gender\", \"$nickname\", \"$age\")";
  $rs = mysql_query( $sql, $conn );

  if( $rs ){
  echo( "Record added:$userid $name $last $city $state $country $email $gender $nickname $age" );
  }
}
?>

</body>
</html>
Link to comment
Share on other sites

Hi,

I would advice you first to show the error:

  $rs = mysql_query( $sql, $conn ) or die (mysql_error());

This error could say a lot about the problem you have.

And try to make the query like this:
[code]
$sql = "insert into users ( userid, name, last, city, state, country, email, gender, nickname, age) values ( '$userid', '$name', '$last', '$city', '$state', '$country', '$email', '$gender', '$nickname', '$age')";
[/code]
This should work. Hope it helps.
Link to comment
Share on other sites

here is how i fix it ... Capital letters in the select statements

<html>
<head>
<title>Add Record</title>
</head>
<body>

<?php

$user="root";
$pass="12345";

$self=$_SERVER['PHP_SELF'];
$userid=$_POST['userid'];
$name=$_POST['name'];
$last=$_POST['last'];
$city=$_POST['city'];
$state=$_POST['state'];
$country=$_POST['country'];
$email=$_POST['email'];
$gender=$_POST['gender'];
$nickname=$_POST['nickname'];
$age=$_POST['age'];

?>

<form action="<?php echo( $self );?>" method="post">
User ID: <input type="text" name="userid" size"30"><br>
Name: <input type="text" name="name" size"30"><br>
Last: <input type="text" name="last" size"30"><br>
City: <input type="text" name="city" size"30"><br>
State: <input type="text" name="state" size"30"><br>
Country: <input type="text" name="country" size"30"><br>
Email: <input type="text" name="email" size"30"><br>
Gender: <input type="text" name="gender" size"30"><br>
Nickname: <input type="text" name="nickname" size"30"><br>
Age: <input type="text" name="age" size"30"><br>
<input type="submit" value="Submit"><br>
</form> 



<?php

    if($userid and $name and $last and $city and $state and $country and $email and $gender and $nickname and $age){
 

    $dbh=mysql_connect("localhost", $user, $pass) or die ("Err:Conn");
 
    if($dbh){
      echo ("Congrats!!!");

    $rs=mysql_select_db("natgal", $dbh) or die ("Err:Db");
   
 
    $sql="INSERT INTO users( userid, name, last, city, state, country, email, gender, nickname, age)
          VALUES ($userid, \"$name\", \"$last\", \"$city\", \"$state\", \"$country\", \"$email\", \"$gender\", \"$nickname\", \"$age\")";
   
    $rs=mysql_query($sql, $dbh);
   
    if($rs){
      echo ("Record Added!!!");
     
          }
      }
    }

?>

</body>
</html>
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.