Jump to content

[SOLVED] function question


182x

Recommended Posts

arrays are formed off 2 styles of keys associtive i.e ($myarray['fish'] or $myarray['cat']) and indeixal i.e ($myarray[0] = "fish" or $myarray[1] = "cat") both have advantages.  Associtive can be used off a user supplied variable or mysql returned string to access them i.e if you had pets and someone said in the search for cat and you could say $myarray[$_GET['pet']] to return what you need.  But indexial arrays let you do quick loops through them using while, foreach loops.  Its something you can pick up on as you get better at php.  Tehre are also what i call hybrid arrays made up of associtve keys with an indexing part ie $pets['animal_1']  you can recall it using a combo string like $pet['animal'.$i] gives you even more options

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.