Help

Re: Simple php loop and echo rows from table

1023 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Dale_Shadbegian
4 - Data Explorer
4 - Data Explorer

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!

2 Replies 2
Mike_Pennisi
7 - App Architect
7 - App Architect

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

Sahil_Sachdeva
4 - Data Explorer
4 - Data Explorer

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.