This is a discussion on Determine foreach within the PHP Language forums, part of the PHP Programming Forums category; We are using the foreach($array as $eachline) function in an array. No. Value. [a] => apple [b] => banana [...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
First 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? |
|
|||
|
Mindy 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 :/ |