I get this error message:
Warning: REG_EBRACK in note.php on line 19
When I try this code:
if (eregi("($string)", $list) == "true") {
header ("Location: note.php?request=main");
exit;
} else {
die ("error");
}
The variable string doesnt have any characters that need to be escaped, so I have no idea where this error is comming from. I have also tried it without the part that says '== "true"' and that didnt do it either. Help would be appriciated! Thanks.