Archive for September 16th, 2009
Testing code
$title = $_POST['title'];
$content = $_POST['content'];
if(!get_magic _quotes_gpc())
{
$title = addslashes($title);
$content = addslashes($content);
}
include 'library/config.php';
include 'library/opendb.php';
$query = " INSERT INTO news (title, content) ".
" VALUES ('$title', '$content')";
mysql_query($query) or die('Error ,query failed');
include 'library/closedb.php';
echo "Article '$title'...
Sep 16, 2009Read More
Testing lists
Unordered List
list item 1
list item 2
list item 3
Ordered List
list item 1
list item 2
list item...
Sep 16, 2009Read More
