PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays

Mobile
feeds
Welcome Login | Register

PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays
  Forums Index
      » PHP Forums
        » » PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays



PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays
Post Description:
Post Tags: php, tutorials, how, to, make, create, a, simle, array, single, dimentional, arrays, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 377 Times Since Tue Mar 06, 2007 3:25 pm Posted By hostman with 0 replies
PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays
ok, arrays is a hard concept to get. as two and three dimesional arrays get more complicated. so i am going to start with a singel dimensional array. This tutorial is to show you how you can learn to make PHP arrays and how to use them in a simple script.

so here is an example code script you can use to see how a single dimesional arrays works:

Lets say i have a choice of 5 cities, all starting with "San" so here are my five cities:
1. San Francisco
2. San Diego
3. San Fernando
4. San Antonio
5. San Bernandino

So i want my script to display a message that say "I live in San Antonio"
this is how the script would look like:


     Code:
<?php
$cities[0] = "San Francisco";
$cities[1] = "San Diego";
$cities[2] = "San Fernando";
$cities[3] = "San Antonio";
$cities[4] = "San Bernandino";

print ("I live in $cities[3].<br>");
?>

Output:
     Code:
I live in San Antonio.


REMEMBER: You will need a website with php, i you don't have php already, signup with www.webune.com with one of their PHP plans.

Another tool you can use is notepad to create script. open your notepad and copy and paste it into notepad and save it as arrays.php and upload to your php webiste to see it in action.


Leave Your Comments






Share
URL:
You can use this HTML code to put it on your website to show your friends this wallpaper. Use this code on your profile like myspace, friendster, Facebook or others. Just Copy and Paste it in your HTML on your websites



Fourms BBCODE:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums





Comments and replies About PHP Tutorials - How To Make Create A Simle Array Single Dimentional Arrays




(0) Comments