include("../php/config.php");
include("../php/util3.php");
$connect=my_connect1($host,$dbid,$dbpass,$dbname);
//$help_no=$help_no*100;
$query = "select * from helpinfo where catenum ='$help_no' ";
// echo $query;
$result = mysqli_query($connect, $query ,$connect);
$rows=mysqli_fetch_array($result);
////////////keyword color
if(isset($keyword) && $keyword){
$keyword_pattern = "/$keyword/i";
$rows[catename] = preg_replace($keyword_pattern, "$keyword", $rows[catename]);
$rows[contents2] = preg_replace($keyword_pattern, "$keyword", $rows[contents2]);
}
/////////////
$top_menu = "home";
$grey_box = "Home > Help";
$green_box_img = "icon_help.gif";
$green_box = "$rows[catename]";
include("../include/header.php");
?>
|
Want phone support?
For an immediate answer call 444*4444
Phone support is available Monday to Thursday from 8am - 9.30pm
and Friday, Saturday and Sunday from 9am - 5pm. |
|
|
include("../include/footer.php");
?>