Hello Everyone,
I am having some problems with the following code
$content=@file_get_contents($DOMAIN);
preg_match_all('index.php?article=(.*)', $content, $extract, PREG_SET_ORDER);
And I get error in preg match all line: Delimiter must not be alphanumeric or backslash
What's wrong with this code?