magetic merchandising
Toronto PHP Developer MySQL and Joomla! 1.5 Extension Development
Toronto PHP Developer MySQL and Joomla! 1.5 Extension Development
Home
Our Services
Portfolio
Downloads
Forum
My Forum Profile
Contact Us
Support
My Support Tickets
JFacebook Support Articles
Invite'em Support Articles
Request Support
How do I make a PHP array?
Comments (1)
php arrays
1
Thursday, 12 March 2009 14:02
Cameron Barr
You initiate a php array using the "array" function.
$myarray = array('this' => 'that');
You can also build and array this way:
$myarray['this'] = 'that';
Reply
Add your comment
Your name:
Your email:
Your website:
Title:
Comment:
Image
Pagebreak
Read more
Post
Preview
yvComment v.1.20.0
Joomla Templates by Joomlashack
$myarray = array('this' => 'that');
You can also build and array this way:
$myarray['this'] = 'that';