Yes, it is HTML but it users the name = "title"
to place into the database via the insert.php file.
Here is the insert.php file which that form uses.
PHP Code:
<?php
include("config.php");
mysql_connect($DBhost,$DBuser,$DBpass) or die("Unable to connect to database");
mysql_select_db ($DBname);
// Insert stuff
mysql_query ("INSERT INTO websites (Title,Date,Catagory,URL) values ('$title', (now()),'$catagory','$url')");
// Confirmation of insert
echo "Your website with title <b> \"" . $title . "\" </b> \"" . $Catagory . "\" has been succesfully inserted in the database.<p>";
echo "<a href=\"index.php\"><font size=2>Back</font></a>";
?>
Bookmarks