Der findes faktisk et. Det hedder notesblok. Der er kun den hårde vej.
Med din html skal du selv sætte php tags på.
Eks.
<html>
<head>
<title>Side</title>
</HEAD>
<body bgcolor="#C0C2C5" link="#000000" vlink="#000000" alink="#000000">
<?
switch ($page)
{
case "View":
Print "<table border=\"0\" cellpadding=\"3\" width=\"700\" id=\"table1\" bordercolor=\"#031448\" style=\"border-collapse: collapse\">\n";
Print " <tr>\n";
Print " <td valign=\"top\">\n";
Print " <b>MEDLEMS INFO</b>\n";
Print " <hr noshade color=\"#031448\" width=\"268\" size=\"1\" align=\"left\">\n";
$query = "SELECT * FROM liste WHERE ID LIKE " . $CompanyID . " ORDER BY FIRMA";
$result = mysql_query($query);
while ($row = mysql_fetch_array($result)) {
Print "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"300\" id=\"table1\">\n";
Print " <tr>\n";
Print " <td height=\"20\" width=\"100\">Firma:</td>\n";
Print " <td height=\"20\" width=\"200\">" . $row['FIRMA'] . "</td>\n";
Print " </tr>\n";
Print " <tr>\n";
Print " <td height=\"20\" width=\"100\">Website:</td>\n";
Print " <td height=\"20\" width=\"200\"><a target=\"Blank\" href=\"
http://" . $row['EMAIL'] . "\">" . $row['EMAIL'] . "</a></td>\n";
Print " </tr>\n";
Print "</table>\n";
Print "<br>\n";
Print "<table border=\"0\" cellpadding=\"3\" width=\"420\" id=\"table1\" bordercolor=\"#031448\" style=\"border-collapse: collapse\">\n";
Print " <tr>\n";
Print " <td height=\"20\" width=\"20\"> </td>\n";
Print " <td valign=\"top\" align=\"left\" height=\"200\" width=\"400\"><a target=\"Blank\" href=\"
http://" . $row['EMAIL'] . "\"><img border=\"0\" src=\"
http://www.nellys.dk/FAHL/logo/" . $row['PIC'] . "\"></a></td>\n";
Print " </tr>\n";
Print "</table>\n";
}
Print " </td>\n";
Print " </tr>\n";
Print "</table>\n";
break;
default:
Print "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"540\" id=\"table1\">\n";
$query = "SELECT * FROM liste ORDER BY FIRMA";
$result = mysql_query($query);
while ($row = mysql_fetch_array($result)) {
Print " <tr>\n";
Print " <td height=\"20\" width=\"20\"> </td>\n";
Print " <td height=\"20\" width=\"300\"><a href=\"
http://www.nellys.dk/FAHL/index.php?page=View&CompanyID=" . $row['ID'] . "\"><b>" . $row['FIRMA'] . "</b></a>, " . $row['POSTBY'] . "</td>\n";
Print " </tr>\n";
}
Print "</table>\n";
}
?>
</body>
</html>