Hello,
I want to count the number of times "/" appears in this url
Here is my code
$url = "http://www.google.com/images/srpr/nav_logo14.png";
$url_arr = eregi(".",$url);
echo count($url_arr);
It displays on "1"
Appreciate all help
Thanks Jean