Results 1 to 10 of 14
Hybrid View
-
7th Aug 2010, 01:33 AM #1OPMember
When I did mysql_real_escape_string it gave me errors.
Speakup Reviewed by Speakup on . [PHP] Guestbook I was a little bored so I coded a PHP guest book for my site. I felt like sharing it with KWWH as well! index.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Guest Book</title> </head> Rating: 5
-
7th Aug 2010, 01:34 AM #2Respected DeveloperWebsite's:
wrzc.orgPut this above the part I edited earlier. You have to be connected to the database for it to check the inputs to make sure their clean.
PHP Code:mysql_connect("localhost","username","password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
PHP Code:mysql_connect("localhost","username","password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
$name = mysql_real_escape_string($_POST['name']);
$email = mysql_real_escape_string($_POST['email']);
$comment = mysql_real_escape_string($_POST['comment']);
$time = now();
$add = mysql_query("INSERT INTO guestbook (name, email, comment, date) VALUES ('$name','$email','$comment', '$time')");
Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
7th Aug 2010, 01:42 AM #3OPMember
-
7th Aug 2010, 01:47 AM #4Respected DeveloperWebsite's:
wrzc.orgShit sorry it's late here and I'm not thinking straight. Use time() instead. You can also use date. Have a look at http://www.php.net/manual/en/function.date.php to see what type of day you want and how you want it displayed.
eg 1st July 2010, 1-7-2010, 7-1-10, etc etc.
I've moved this to the coding area as it's more of a coding topic than a Tutorial.Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Creating a Guestbook in RVSiteBuilder
By Areon in forum Server ManagementReplies: 0Last Post: 3rd Mar 2014, 03:12 PM
themaRegister - register to forums...
Version 3.56 released. Open older version (or...