Jump to content

[SOLVED] simple array question


jfarthing

Recommended Posts

This is probably simple, I just cant figure out a method.  Let's say I have an array like the following:

array("Green:1","Yellow:2","Blue:3")

And I stored the info in the database in the form of just that number.  Now, when I retrieve the info from the database, I need to just pull the text from that same array.  Say a user chose number 2.  I need to access this particular array and display "Yellow" not "Yellow:2"  Thanks in advance!!

Link to comment
https://forums.phpfreaks.com/topic/79768-solved-simple-array-question/
Share on other sites

Actually, I just figured that one out myself, but one more question.  What if I want an array of the months of the years, and I want the starting zero included in the key on the first 9 months eg. 01 => "January" or would I have to set them each manually?

yes... what we created above was a numerical index starting at 1 instead of zero. By needing to prepend each single digit with 0, we would need an associative array. Each element would then be a string, and need to be manufactured. There would be a REALLY EASY way to do that, using a loop and the DATE function...

 

Can you figure it out? = ^)

 

PhREEEk

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.