magetic merchandising
Toronto PHP Developer MySQL and Joomla! 1.5 Extension Development
Toronto PHP Developer MySQL and Joomla! 1.5 Extension Development
Home
Downloads
Contact Us
Our Services
Portfolio
Questions & Answers
Submit a Question
PHP Questions
Joomla!1.5 Questions
MySQL Questions
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:
Subject:
Comment:
Image
Pagebreak
Read more
Post
Preview
yvComment v.1.20.0
Questions and Answers
Submit a Question
PHP Questions
Joomla!1.5 Questions
MySQL Question
Latest Questions
Changing Contact Email
Joomla page error
What's so Good About Joomla?
Joomla, Flex and PHP?
How do I make a PHP array?
Amazon.ca Widgets
Login? ... Logout?
Username
Password
Remember Me
Forgot your password?
Forgot your username?
Create an account
Joomla Templates by Joomlashack
$myarray = array('this' => 'that');
You can also build and array this way:
$myarray['this'] = 'that';