www.blahblahblah.com/show/index.php?product=item1
www.blahblahblah.com/show/index.php?product=
$url = "www.blahblahblah.com/show/index.php?product=item1";$pattern = "www.blahblahblah.com/show/index.php?product="; $result = strstr($url, $pattern);if($result == true) { echo 'true';} else { echo 'false';}
Jump To Top of Thread