Hi All
Here is my question I need to "NOT MATCH" a string out of the text, please let me know how do i.
eg: "word"
url: "http://www.thisisaword.com" [no match] url: "http://www.thistoo.com/sample=test&word=test [no match]
Only if that "word" does not appear in any part of the URL it shd accept please help me ! I'm stuck !
Don't need regex for that....
$url = "http://www.thisisaword.com"; if(strpos($url,"word") === false) { // no match }