Lynna Landstreet wrote:
for ($row = 0; row < pg_numrows($artist_list); $row++) {
Make this line read: for ($row = 0; $row < pg_numrows($artist_list); $row++) { Note the missing "$" on row at "row < pg_numrows". HTH, Joe
Lynna Landstreet wrote:
for ($row = 0; row < pg_numrows($artist_list); $row++) {
Make this line read: for ($row = 0; $row < pg_numrows($artist_list); $row++) { Note the missing "$" on row at "row < pg_numrows". HTH, Joe