比如
<?php
$exec="select * from user order by id desc";
$result=mysql_query($exec,$conn);
while($rs=mysql_fetch_object($result)){
?>
<tr>
<td><?php echo $rs->name;?></td>
<td><?php echo $rs->phone;?></td>
</tr>
<?php
}
?>
这样写已经很熟练,该如何提升自身的 php 水平呢?