Estimated Big Job Availability : February 2nd, 2009
 
Save at least 13% to 21.7% or more with prepaid hours for webmastering and programming work         **********         Affordable web site hosting packages with rich features are now available          **********         Earn Credit with referrals and advertising for DragonFrugal.com products and services          **********         Get answers to all your technical questions for free in the help forums


Array Tutorial:

Arrays are like strings except that they can hold multiple values, like for instance an online shopping cart may be one array of multiple items.

An empty array (to populate later) is established like this:

<?php
$my_array_name 
= array();
?>

Or you can establish it with values immediately:

<?php
$my_array_name 
= array('apples''oranges''pears''bananas''grapes');
?>

The above array's values can be accessed (for changing or reading values) seperately like so:

<?php
$my_array_name
[0]  // This value is "apples"
$my_array_name[1]  // This value is "oranges"
$my_array_name[2]  // This value is "pears"
$my_array_name[3]  // This value is "bananas"
$my_array_name[4]  // This value is "grapes"
?>

<html>
<body>


<?php

phpinfo
();

$my_array_name = array('apples''oranges''pears''bananas''grapes');

 
?>

</body>
</html>
Tada
Wednesday, August 6th, 2008:
  New services have been added at DragonFrugal.com for a one-stop-shop experience to cover many web site needs, including domain registration, SSL certificates, and web site hosting. New discounts are also available which save big money off hourly rate web site work.
-Mike

Saturday, July 14th, 2007:
  DFD Cart v1.1 is finally out of Beta testing! Whether you are a wholesale distributor or just sell many different products, want to save hundreds monthly by switching to an electronic ordering system or want to compliment your catalog ordering system, you might want to see what it has to offer for your business. Spreadsheet import/export is built in, and there are a lot of failsafes and a help sytem too...
Official PayPal Seal
The International Webmasters Association
SSL
©  DragonFrugal.com    |    Service Protocols    |    Payment Plans    |    Contact      web page monitoring      
 
Home Open Source Help Forums