How To Index Arrays And Show All The Elements And Values Of Array
Posted On Sun Feb 24, 2008 By hostman In Snippets forums topics about simple codes to make programming fun Forums
indexing arrays with string
so far i've only seen arrays indexed by itergers, but it is also permissbible to use strings. sometimes there are called assocaited arrays, or hashes. they are helpful in situations where you are colectin differen type so information into one array. you could build inot your code a system where element zeor is a name, element one is a location, and element two is an occupation
here is an example:
<?php
// fill in some information
$userinfo["Name"] = "John Doe";
$userinfo["Location"] = "San Francisco";
$userinfo["Occupation"] = "Programmer";
foreach($userinfo as $key=>$value) {
print("$key is $value.<br>");
}
?>
// fill in some information
$userinfo["Name"] = "John Doe";
$userinfo["Location"] = "San Francisco";
$userinfo["Occupation"] = "Programmer";
foreach($userinfo as $key=>$value) {
print("$key is $value.<br>");
}
?>
the above will output:
Name is John Doe
Location is San Francisco
Occupation Programmer
Location is San Francisco
Occupation Programmer
Related Content
Information
Forums »
Snippets forums topics about simple codes to make programming fun »
How To Index Arrays And Show All The Elements And Values Of Array
Snippets forums topics about simple codes to make programming fun »
How To Index Arrays And Show All The Elements And Values Of Array
Title: How To Index Arrays And Show All The Elements And Values Of Array
Description: How To Index Arrays And Show All The Elements And Values Of Array
Tags: how ,to ,index ,arrays ,and ,show ,all ,the ,elements ,and ,values ,of ,array
Info: This Post Has Been Viewed 0 Times Since
Date: Sun Feb 24, 2008
Author hostman Received 0 Replies #1380
Date: Sun Feb 24, 2008
Author hostman Received 0 Replies #1380
Share
URL: 

Embed: 

To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it
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
wallpaperama | Wallpapers | Forums | Terms Of Service
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5