ruạṛ
<?php /** * display stockist map */ require_once($_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/universal.php'); require_once($_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/functions.php'); require_once($_SERVER['DOCUMENT_ROOT'].'/resources/template/functions.php'); $connID = connect_to_db(); if($id = is_numeric_id($_GET['stockist'],false)) { $stockist = new stockist($id); $title = $stockist->name.' - '.str_replace(array("\r\n","\n"),' ',$stockist->address); $content = db_content($stockist->map_code); } else { $title = $content = '<p>Map not found.</p>'; } ?> <html> <head> <title><?php echo $title; ?></title> </head> <body> <?php echo $content; ?> </body> </html>
cải xoăn