Hi there,
I am passing an array through the URL with a ',' inbetween:
var=php,mysql,super
Parsing is done with: explode (',',$var). This gives me an array starting
with 0Later on I have to search for lets say php with array_search. Unfortunatelly array_search requires an array starting with 1. So php is not found. Does anybody know a workaround for this? Thanx, Andy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

