I am pulling the information from a MySQL database. On one page it works great, because I am pulling a single record and using the command like:
Code: Select all
<?php print_output($myrow2ї"subject"]) ?>However, in another section, I am pulling multiply rows by using the fetch command. Below is the code:
Code: Select all
($myrow2 = mysql_fetch_array($result2)) {
printf("
<fieldset>
<legend class='fieldset'>%s</legend>
%s</fieldset>
<p>\n"
, $myrow2ї"subject"], $myrow2ї"message"]
);
}?>Richard