永久显示HTML TD Cell上方的通知消息

时间:2014-04-07 07:29:37

标签: php html5

我正在尝试永久显示HTML表格中每个TD单元格的通知消息, 像这样的东西,

enter image description here

如何得到这个请告诉我

这会在td内显示通知,所以td高度延伸,

echo "<td title='This is Title' id=$colformfldid class=$k,1>";
                                                                echo '<div id="tool" style="background-color: lightblue;position:relative; "> '.$ques_res['message'];
                                                            echo $item_name;
                                                                echo "</div>";
                                                            echo "</td>";

1 个答案:

答案 0 :(得分:0)

我不确定我是否理解正确,因为你的问题并不清楚。

PHP

<?php
$name = "name";
$operatorname ="operator";
//(echo this in your table) echo "Hello, M. $name, my name is $operatorname,....";
?>

HTML

<table style="width:500px" border='1'>
<tr>
  <td><?php echo "Hello, M. $name, my name is $operatorname,...."; ?></td>
  </tr>
<tr>
  <td>Eve</td>
</tr>
</table></body>