I am already at the Intermediate level of PHP access :\
I get the error that I'm using too many parameters for strstr() and I've already done a lot of work to make sure it is not my error.
I'm using it like this:
if (strstr($data, "://", true) == "http") { /* code */ }
to check if the string "$data" is a URL that starts with http and it won't allow me to use that last true/false statement that, in the PHP manual, says is there as of version 5.3.0.
(The value "true" should make it so it gets the string before the occurrence of "://")
Thanks for the help thus far! This is quite the hassle currently as I'm building a lot of code on this particular function.
EDIT:
http://us.php.net/manual/en/function.strstr.php is the location of strstr() in the PHP manual where this is mentioned. Apologies for the lack of thoroughness in the original post.