在HTML表格的空单元格中建立链接

时间:2016-03-17 07:08:32

标签: php html

我有一张桌子。有没有办法只在空td(点击加号)

中建立链接

如果td名称年龄,则跳过制作链接

我希望有人理解

的index.php

<table>
<tr>
<td><?php echo $name ;?><a href ="add.php">+</td>
<td><?php echo $age ;?><a href ="add.php">+</td>
</tr>
<table>

2 个答案:

答案 0 :(得分:3)

如果值设置为打印值,则需要检查设置值而不是空值,否则打印anchar链接为:

示例:

<td>
    <?=(isset($name) && !empty($name) ? $name : "<a href ='add.php'>+</a>");?>
</td>
<td>
    <?=(isset($age) && !empty($age) ? $age : "<a href ='add.php'>+</a>");?>
</td>

答案 1 :(得分:1)

+试试这个

<table>
<tr>
<td><?php echo (strlen(trim($name)) > 0) ? $name : "<a>+</a> ;?>+</td>
 <td><?php echo (strlen(trim($age)) > 0) ? $age : "<a>+</a> ;?>+</td>
</tr>
<table>