require('../configuration/config.php');
?>
News
$query="select * from news";
$result=mysql_query($query) or die(mysql_error());
while($row=mysql_fetch_assoc($result))
{
$id=$row['id'];
$newstitle=$row['newstitle'];
$newsdis=$row['newsdis'];
?>
|
|
echo $newstitle; ?>
echo $newsdis; ?> |
}
?>
|