I've tried this:
<?
$result = mysql_query("SELECT * FROM lp");
$myrow = mysql_query($result);
printf("<textarea rows=4 cols=20>%s</textarea>\n<br>", $myrow["lp"]);
?>
And I have no idea what is wrong. I have tried dozens of different combinations and other things, yet it just won't display the contents of what is in table lp and row lp. I named them the same for the purpose. 😕 Any help would be greatly appreciated.
And yes, I do have the db connection right! 😉