Jump to content

arrays


aebstract

Recommended Posts

Can I have an array like this?

 

Array ( [12] => Array ( [id] => 1 [date_start] => 2010-02-12 [date_end] => 2010-02-14 [description] => [flyer] => test.jpg )
           [13] => Array ( [id] => 1 [date_start] => 2010-02-12 [date_end] => 2010-02-14 [description] => [flyer] => test.jpg )
           [14] => Array ( [id] => 1 [date_start] => 2010-02-12 [date_end] => 2010-02-14 [description] => [flyer] => test.jpg )
           [12] => Array ( [id] => 3 [date_start] => 2010-02-12 [date_end] => 2010-02-12 [description] => [flyer] => jump.jpg ) ) 

 

I'm trying to figure out a good way to do events with a calendar, if I can have an array like this it'll help a lot. Not sure if the key numbers can be the same or not? See the 12 and 12?

Link to comment
https://forums.phpfreaks.com/topic/190550-arrays/
Share on other sites

I'm pretty sure you can have the same keys but in different dimensions like

$date[1][31]="Some random event";
$date[1][1]="New years or whatever";

 

On a side note, have you ever considered using MySQL for calenders, I've tried wrapping my head around calendars and managed to do it with MySQL.

Link to comment
https://forums.phpfreaks.com/topic/190550-arrays/#findComment-1005029
Share on other sites

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.