
June 20th, 2000, 10:42 PM
|
 |
Banned (not really)
|
|
Join Date: Dec 1999
Location: Brussels, Belgium
|
|
|
If you are using php4.0, you can uses braces around an array in an echo statement to get it to work...
echo "The value is {$tempdata[$count]}.<BR>n";
echo "The value is {$tempdata[$count+1]}.<BR>n";
echo "The value is {$tempdata[$count+2]}.<BR>n";
---John Holmes
|