Skip to main content

Just getting back into programming after a long pause.

Is there an example script out there: Simple php loop and echo rows from table?

Thank you!

The following project lets you interact with Airtable bases from PHP scripts, and the examples it includes sound like what you’re looking for:





Hi @Dale_Shadbegian


I think you got your answer by this code.


<?php
echo "";
for ($row=1; $row <= 10; $row++) {
echo " \n";
for ($col=1; $col <= 10; $col++) {
$p = $col * $row;
echo " \n";
}
echo "";
}
echo "
$p
";
?>

Hire PHP Developers from BootesNull if you have any project.


Reply