Code Comments
Programming Forum and web based access to our favorite programming groups.We are using the foreach($array as $eachline) function in an array. No. Value. [a] => apple [b] => banana [am] => monkey How do I determine the No.varabele of the array within the foreach function? Mindy
Post Follow-up to this messageFirst step look in php manual, available for downloand from http://www.php.net/ foreach ($yourarray as $key => $value){ echo $key .";".$value."/n" } the $key is the key Hello, Mindy! You wrote on Mon, 18 Apr 2005 13:07:16 +0200: MG> No. Value. MG> [a] => apple MG> [b] => banana MG> [am] => monkey MG> How do I determine the No.varabele of the array within the foreach MG> function?
Post Follow-up to this messageMindy Geac wrote:
> We are using the foreach($array as $eachline) function in an array.
>
> No. Value.
> [a] => apple
> [b] => banana
> [am] => monkey
>
> How do I determine the No.varabele of the array within the foreach
> function?
>
> Mindy
>
>
<?
foreach($array AS $key => $value) {
echo 'My key is:' . $key . ' and my value is: ' . $value;
}
?>
--
___| ___| _ \ _ _| _ \__ __| __ \ | | __ \ ____|
\___ \ | | | | | | | | | | | | | __|
| | __ < | ___/ | | | | | | | |
_____/ \____|_| \_\___|_| _| ____/ \___/ ____/ _____|
Computers will never take the place of books. You can't stand on a
floppy disk to reach a high shelf.
I thought 'Deep Throat' was a movie about a giraffe :/
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.