ich habe folgendes Script:
echo "<table border=\"1\" witdh=100%>";
echo "<tr>";
echo "<td bgcolor=#39393F><b>Name:</td>";
echo "<td bgcolor=#39393F><b>Beschreibung:</td>";
echo "<td bgcolor=#39393F><b>Link:</td>";
echo "</tr>";
echo "<tr>";
while ($row=MYSQL_FETCH_ROW($result)) {
echo "<tr>";
for($i=0; $i < MYSQL_NUM_FIELDS($result); $i++) {
echo "<td>$row[$i]</td>"; }
echo "</tr>";
}
echo "</table>";
und damit ein Problem, denn unter "Link" soll natürlich ein Link in der Tabelle stehen
nur wie bekomme ich es hin, dass er dann auch einen Link schreibt?
echo "<table border=\"1\" witdh=100%>";
echo "<tr>";
echo "<td bgcolor=#39393F><b>Name:</td>";
echo "<td bgcolor=#39393F><b>Beschreibung:</td>";
echo "<td bgcolor=#39393F><b>Link:</td>";
echo "</tr>";
echo "<tr>";
while ($row=MYSQL_FETCH_ROW($result)) {
echo "<tr>";
for($i=0; $i < MYSQL_NUM_FIELDS($result); $i++) {
echo "<td>$row[$i]</td>"; }
echo "</tr>";
}
echo "</table>";
und damit ein Problem, denn unter "Link" soll natürlich ein Link in der Tabelle stehen
nur wie bekomme ich es hin, dass er dann auch einen Link schreibt?