require("includes/config.php");
$query = "
SELECT content FROM home_flash WHERE id = '2'
";
$result = db_query($query);
if(db_num_rows($result))
{
$row = db_fetch_array($result);
echo $row[content];
}
?>
