Hi im getting this error
Deprecated: Function ereg_replace() is deprecated in /home/hj016/public_html/SSTW/index.php on line 10
below is the code
// Determine which page ID to use in our query below ---------------------------------------------------------------------------------------
if (!isset($_GET['pid'])) {
$pageid = '1';
} else {
$pageid = ereg_replace("[^0-9]", "", $_GET['pid']); // filter everything but numbers for security
}