首页上一页 1 下一页尾页 1 条记录 1/1页
新手 问一个很 菜鸟的问题 谢谢各位 php从入门到精通(2版)
发表在PHP图书答疑
2011-07-25
是否精华
是
否
版块置顶:
是
否
第二章里的练习与实践里有一道题目 是使用echo语句输出一个4*3像素大小的表格 但是书里只介绍了echo输出字符 于是我看了看答案
<?php
echo "<table border=1 width=300>";
echo "<tr><td width=100 height=50>1</td>";
echo "<td width=100 height=50>2</td>";
echo "<td width=100 height=50>3</td></tr>";
echo "<tr><td width=100 height=50>4</td>";
echo "<td width=100 height=50>5</td>";
echo "<td width=100 height=50>6</td></tr>";
echo "<tr><td width=100 height=50>7</td>";
echo "<td width=100 height=50>8</td>";
echo "<td width=100 height=50>9</td></tr>";
echo "<tr><td width=100 height=50>10</td>";
echo "<td width=100 height=50>11</td>";
echo "<td width=100 height=50>12</td></tr>";
echo "</table>";
?>
请问这里边的<tr> <td> 是什么意思 谢谢各位的指导
<?php
echo "<table border=1 width=300>";
echo "<tr><td width=100 height=50>1</td>";
echo "<td width=100 height=50>2</td>";
echo "<td width=100 height=50>3</td></tr>";
echo "<tr><td width=100 height=50>4</td>";
echo "<td width=100 height=50>5</td>";
echo "<td width=100 height=50>6</td></tr>";
echo "<tr><td width=100 height=50>7</td>";
echo "<td width=100 height=50>8</td>";
echo "<td width=100 height=50>9</td></tr>";
echo "<tr><td width=100 height=50>10</td>";
echo "<td width=100 height=50>11</td>";
echo "<td width=100 height=50>12</td></tr>";
echo "</table>";
?>
请问这里边的<tr> <td> 是什么意思 谢谢各位的指导