View Single Post
  #3 (permalink)  
Old 12-17-03, 05:39 AM
tsb tsb is offline
Newbie Coder
 
Join Date: Dec 2003
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Is that the whole code, because when i use it, it says:

Code:
Parse error: parse error, unexpected T_ECHO in /blah/blah/blah/numbers.php on line 7
All i basically want is something like:

PHP Code:

<? 

$numbers
=array("1","2","3"); 
?> 

<?php echo $numbers?> 

<?php echo $numbers?> 

<?php echo $numbers?>
Obviously that doesn't work, but i want it to display 1, 2, and 3 in each of the echos, in that order, with the echo codes being identical to each other...

Last edited by tsb; 12-17-03 at 06:05 AM.
Reply With Quote