I want to display all tables in a while loop.
Code: Select all
$id=0;
while($id<=7)
{
echo "The name is " . $name[$id] . " and the URL is " . $url[$id] . "<br />";
$id++;
}How can I do this?
Thanks in advance
Moderator: General Moderators
Code: Select all
$id=0;
while($id<=7)
{
echo "The name is " . $name[$id] . " and the URL is " . $url[$id] . "<br />";
$id++;
}