PHP Code:
<?php
$connect=mysql_connect('localhost', 'root', 'glide75') or die(mysql_error());
echo "Connected to MySQL<br />";
mysql_select_db("vb") or die(mysql_error());
echo "Connected to Database<br />";
$sql="SELECT `title` FROM `thread` WHERE `dateline` BETWEEN 1315958401 AND 1318723199";
$result=mysql_query($sql);
while($row = mysql_fetch_array($result))
{
echo "$row[title]<br />";
}
?>
This is the final and working script.
Thanks for the help kh99.
It worked.
Just need to figure out how to calculate the from date and to date properly as needed.