Page is a not externally linkable
Scotty13 - 6:23 pm on Apr 17, 2012 (gmt 0)
GOT IT! Thanks ALL for your help.
<?php
require_once "connect_to_mysql.php";
print "Success in database CONNECTION.....<br />";
$result = "CREATE TABLE blog_sections (
id int(11) NOT NULL AUTO_INCREMENT,
title varchar(88) NOT NULL,
ordered int(11) NOT NULL,
PRIMARY KEY (id)
) ";
if (mysql_query($result)){
print "Success in TABLE creation!......
<br /><br /><b>That completes the table setup, now delete the file <br />
named 'section.php' and you are ready to move on. Let us go!</b>";
} else {
print "no TABLE created. You have problems in the system already, backtrack and debug!";
echo "\n" . mysql_error();
}
exit();
?>