Phpu wrote:

Hi,

I have this array:

$array = array(element1, element2, element3, element4)

I want to list all elements of this array, so i used:

  foreach ($array as $index => $element) {
        $InputString = "$element";
         echo "$InputString";
           }

but this code lists the elements like this: element1 element2 element3 element4

How can i list my elements like this: element1
element2
element3
element4

That's not a problem with arrays. This is one with outputting. You need to add a newline to your echo Statement. Either echo "$InputString\n"; or echo "$InputString<br>"; depending on wether you use html or plain text.


Oliver

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to