如何在HTML的每一行中添加按钮/超链接

时间:2015-03-03 14:37:21

标签: php html mysql

我有一个动态数据存储在HTML表格中。现在我需要在表格的每一行都有一个超链接或按钮。所以我应该执行一些操作。

for($i = 0; $i < $index_pointer; $i++)
{
echo '<tr>';
echo "<td>". $brands[$i]. "</td>";
echo "<td>". $models[$i]. "</td>";
echo "<td>". $years[$i]. "</td>";
echo "<td>". $categories[$i]. "</td>";
echo "<td>". $frames_size[$i]. "</td>";
echo "<td>". $frames_type[$i]. "</td>";
echo "<td>". $wheels_size[$i]. "</td>";
echo "<td>". $colors[$i]. "</td>";
echo "<td>". $genders[$i]. "</td>";
echo "<td>". $origins[$i]. "</td>"; 
echo "<td>"."<a href=""/>"."</td>";
echo '</tr>';
}

如何实现这一目标?

2 个答案:

答案 0 :(得分:0)

如果这不是你想要的,或者这不是问题,我会立即删除这个答案,但这是你想要的吗?:

for($i = 0; $i < $index_pointer; $i++)
{
   echo '<tr>';
   echo "<td>". $brands[$i]. "</td>";
   echo "<td>". $models[$i]. "</td>";
   echo "<td>". $years[$i]. "</td>";
   echo "<td>". $categories[$i]. "</td>";
   echo "<td>". $frames_size[$i]. "</td>";
   echo "<td>". $frames_type[$i]. "</td>";
   echo "<td>". $wheels_size[$i]. "</td>";
   echo "<td>". $colors[$i]. "</td>";
   echo "<td>". $genders[$i]. "</td>";
   echo "<td>". $origins[$i]. "</td>"; 
   echo "<td><a href='URL'>The text that's clickable</a></td>";
   echo '</tr>';
}

在此处阅读更多内容:http://www.w3schools.com/tags/tag_a.asp

答案 1 :(得分:0)

  

试试这个。

     
    

mysql_connect(&#34; localhost&#34;,&#34; root&#34;,&#34; ameex&#34;)或die(mysql_error());     mysql_select_db(&#34; admin&#34;)或死(mysql_error());

         

$ result =     mysql_query(&#34; SELECT * FROM details&#34;)或die(mysql_error());

         回声&#34;&#34 ;;             echo&#34; TitleImageDescription&#34 ;; $ DIR =&#34;影像/&#34 ;;

         

while($ row = mysql_fetch_array($ result)){
            echo&#34;&#34 ;;             echo $ row [&#39; title&#39;];             echo&#34;&#34 ;;

    echo "<img src='$dir/$row[image]' width=100px height=100px><br>";
    echo"</td><td>";
    echo $row['description'];
    echo '<td><a href="edit.php?action=edit&title='.$row['title'].'">Edit</a></td> 
      <td><a href="delete.php?action=delete&title='.$row['title'].'">Delete</a></td>';
echo "</td></tr>";  }