Kendimi programlama ve basit bir sorun takılıp gelmiş öğretmeye çalışıyorum üzerinde çalışıyoruz,
Ben ile çalışıyorum hattı
echo "<td>" . $row['website'] . "</td>";
sadece veritabanında {mysql} bu sütun 'web sitesi' altında düz metin olarak, ben, bütün tablo için satır et tıklanabilir yapmak için nasıl çalışmak için çalışıyorlar
i have tried <href ="echo "<td>" . $row['website'] . "</td>"";
Ben sadece ben doğru sonuçlar için ifade soruyu mümkün görünmemektedir, bir cevap için web'de arama denedim.
teşekkür ederim.
Ayrıca güvenilir
<?
$result = mysql_query("SELECT * FROM leader");
echo "<table border='1'> <tr> <th>id</th> <th>Club</th> <th>Website</th> <th>Club Badge</th> </tr>";
while($row = mysql_fetch_array($result)) {
echo "<tr>"."<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td>" . $row['club'] . "</td>";
echo "<td>" . $row['website' ] . "</td>";
echo "<td><a class=\"mylink\" href=\"" . $row['website'] . "\">" . $row['website'] . "</a></td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
ama yine de var Parse error: syntax error, unexpected '<' in /home/a6332763/public_html/res.php on line 29
GÜNCELLEME ......... şimdi sağ kutuya sadece kod burada,-ön bağlantıları url siteleri url olduğunu ekleyerek, eksi mysqul bağlantı göstermek için link var mı.
<?php
$result = mysql_query("SELECT * FROM leader");
echo "<table border='1'>
<tr>
<th>id</th>
<th>Club</th>
<th>Website</th>
<th>Club Badge Url</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>"."<tr>";
echo "<td>" . $row['id'] . "</td>";
echo "<td>" . $row['club'] . "</td>";
echo "<td><a class=\"mylink\" href=\"" . $row['website'] . "\">" . $row['website'] . "</a></td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
<html>
<body>
<a href="res.php">Link text</a>
Click on <a href="http://www.sumsitehere.com">this link</a> to run your first PHP script.
</body>
</html>