include '../include/common.php';
$result=mysql_query ( "Select * from website_link where category='Lifestyle Links'");
$rows=mysql_num_rows($result);
while ($row=mysql_fetch_array($result))
{
if ($i<$rows)
{
?>
| echo $row[name]; ?> |
|
 |
|
 |
|
| echo $row[website]; ?> |
echo $row[content]; ?>
|
|
|
|
}
$i++;
}
?>
|