$result = mysql_query("SELECT blog FROM tbl_about");
if (!$result) {
echo "DB Error, could not query the database\n";
echo 'MySQL Error: ' . mysql_error();
exit;
}
while($row = mysql_fetch_array($result)) {
$blog = stripslashes($row['blog']);
}
?>
 |
$usrSelfPage = basename($_SERVER['PHP_SELF']); ?>
-
$menuNm = ($usrSelfPage == 'gallery_1.html' || $usrSelfPage == 'gallery_2.html') ? 'Galleries':'GALLERIES' ;
?>
- |
-
$result = mysql_query("SELECT blog FROM tbl_about");
if (!$result) {
echo "DB Error, could not query the database\n";
echo 'MySQL Error: ' . mysql_error();
exit;
}
while($row = mysql_fetch_array($result)) {
$blog = stripslashes($row['blog']);
}
?>
- |
-
- |
-
|
|
 |