Skip to main content

Simple php loop and echo rows from table

  • April 8, 2020
  • 2 replies
  • 16 views

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

Forum|alt.badge.img+4
  • Inspiring
  • 60 replies
  • April 10, 2020

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


  • New Participant
  • 1 reply
  • October 5, 2021

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.