Jump to content

Only ID and Date is writing to MySql


kristiankeith

Recommended Posts

If anyone can assist me I would appreciate it. I have been trying to make this work for the past 3 days. I am doing a simple guestbook with PHP into MySQl and it connects, the ID and Date stamps work and appear in the guestbook but the name, email, hometown and comments do not. Here is the code. Again thank you in advance for any assistance.

 

<body bgcolor="#000000">

 

<?php

$host="localhost"; // Host name

$username=""; // Mysql username

$password=""; // Mysql password

$db_name=""; // Database name

$tbl_name="guestbook"; // Table name

 

// Connect to server and select database.

mysql_connect("$host", "$username", "$password")or die("cannot connect server");

mysql_select_db("$db_name")or die("cannot select DB");

 

$date=date("y-m-d"); //date

 

$sql="INSERT INTO $tbl_name(name, email, hometown, comments, date)VALUES('$name','$email','$hometown','$comments','$date')";

$result=mysql_query($sql);

 

//check if query successful

if($result){

echo "Successful";

echo "<BR>";

echo "<a href='viewguestbook.php'>View guestbook</a>"; // link to view guestbook page

}

 

else {

echo "ERROR";

}

 

mysql_close();

?>

 

Link to comment
https://forums.phpfreaks.com/topic/258078-only-id-and-date-is-writing-to-mysql/
Share on other sites

I recognize the code (i was on that website TOO).

And what I got needed to be tinkered with before it would work.  Try re-reading the webpages before it to make sure any files or code that was used in a tutorial PRIOR to this one, are written properly and in your pocession.

 

Check to make sure all the file names and field names follow the same structure.  Good luck!

I see what mikosiko is saying.

Your DATE is being GIVEN on the same page.  So date and ID (which I assume is automated by the table) are sort of a guarantee.  If you're putting data in for the other fields from a form, you need to MATCH the 'name' in the form with the 'name' in this script so that it can be put into the table (make sense).

Backtrack your steps, and make sure the form ACTION is naming THIS FILE with EXTENSION.

How do you think it came to be that I can recognize their code so easily? In many cases, it does mean the code will NOT work, then it ends up posted here. The best resource for php is the manual. http://www.php.net, IMO.

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.