i´m new to php and have a problem with arrays:
does anybody know a function to find out at which position (first, second...ninth...) an element is in an array?
if somebody knows lingo: i´m looking for a translation for "getpos( )"
thank you!!
Just make a function that loops through the array and returns the position of the element you're looking for. This could be done in a simple loop..