What does it mean when I get a parse error that says (...parse error on
line 82) when line 81 is </html>(the end of the page)?
Also would like to know what parse error is contained in this line:
printf("<tr><td>%s</td><td>%s</td><td><a href=\"%s?id=%s\"</a></td><td>%s</td><td>%s</td></tr>\n", $PHP_SELF, $rows["type"],$rows["brand"],$rows["model"],$rows["size"],$rows["price"];
Why can I not use :
print "$rows["type"]"...etc.
in other words the print function here instead of printf? is it because it is an array instead of a variable?
Sorry, lots of questions.
thanks in advance for any help.