- Forums
- Snippets
- How To Be Able To Display Array Elements Values With Loop
This Page Contains information about How To Be Able To Display Array Elements Values With Loop By wallpaperama in category Snippets with 2 Replies. [1379], Last Updated: Sat May 18, 2024
wallpaperama
Sun Feb 24, 2008
2 Comments
1682 Visits
i use this to show all the elements in an array for each value
for($i =0; $i < count($words); $i++) {
echo $words[$i]."<br>";
}