Hi,
printf("id: %s\n<br>", $row["id"]);
works in a general format to display my primary key data, but how do I convert it over to display in a table format.
Here is the line I am using for the table.
printf("<tr><td>I NEED TO PUT IT RIGHT HERE</td><td>%s</td><td>%s</td><td>%s %s</td></tr>\n", $myrow[1], $myrow[2], $myrow[3], $myrow[4], $myrow[5])
All the other data shows up fine, but I have tried using %s, $id [id] and numerous other combinations for the primary key, but none of them seem to work.
Thanks