aebstract Posted February 1, 2010 Share Posted February 1, 2010 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? Quote Link to comment https://forums.phpfreaks.com/topic/190550-arrays/ Share on other sites More sharing options...
KevinM1 Posted February 1, 2010 Share Posted February 1, 2010 Yes, you can have multi-dimensional arrays. Quote Link to comment https://forums.phpfreaks.com/topic/190550-arrays/#findComment-1005019 Share on other sites More sharing options...
aebstract Posted February 1, 2010 Author Share Posted February 1, 2010 I know I can have multi-dimensional arrays, can they have the same key? Quote Link to comment https://forums.phpfreaks.com/topic/190550-arrays/#findComment-1005023 Share on other sites More sharing options...
Jezza Posted February 1, 2010 Share Posted February 1, 2010 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. Quote Link to comment https://forums.phpfreaks.com/topic/190550-arrays/#findComment-1005029 Share on other sites More sharing options...
Mchl Posted February 1, 2010 Share Posted February 1, 2010 I know I can have multi-dimensional arrays, can they have the same key? No they can't. Quote Link to comment https://forums.phpfreaks.com/topic/190550-arrays/#findComment-1005036 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.