我已经回复了下表;
http://www.skulldogs.com/dev/testview.php
这列出超过200个字符,有时每个字符都会被标记为“主要”,我需要将主链接与可能的“ALT”字符链接。
所以我做了一个表格才能做到这一点;
现在它添加到'mainToon'字段中,它表示“ALT”toons主要字符链接。
我现在如何回应表格以显示链接相关“ALT”卡通的主要香椿(也许是缩进!)右边。
这是我的基本表格echo代码:
<?php
// Define and perform the SQL query
$results = mysql_query('SELECT * FROM `ecmt_memberlist` ORDER BY `name` ASC LIMIT 10');
$results_array = array();
echo "<table border='1'><tr><th>Character Name</th><th>Catagory</th><th>Linked Character</th></tr>";
while ($row = mysql_fetch_array($results)) {
// TIME TO ECHO OUR RESULTS
echo "<tr><th>";
echo $row['name'];
if ($row['toonCategory'] == 'Main Toon') {
echo "</th><th bgcolor='#00FF00'>"; }
else {
echo "</th><th bgcolor='#FFFF00'>"; }
echo $row['toonCategory'];
echo "</th><th>";
echo $row['mainToon'];
echo "</th>";
}
?>
我添加了一个如何回声的模拟;