When using wther the ereg() or eregi() commands, I've been getting this error:
Warning: REG_BADRPT in /develop/personals/newguestfour.html on line 63
I've never seen this error before, and am wondering if it might be a server-side issue. here's the code:
while ($row = mysql_fetch_array($get)){
if (ereg("$row[0]",$subject)){
$send = "no";
}
if (ereg("$row[0]",$comments)){
$send = "no";
}
}
Any ideas?
Thanks,
John