首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

这段代码为啥无法 加入链接

2013-08-09 
这段代码为什么无法 加入链接啊html headtitle New Document /title /head body?php$link m

这段代码为什么无法 加入链接啊


<html>
 <head>
  <title> New Document </title>
 </head>

 <body>
  <?php
$link   = mysql_connect( '127.0.0.1', 'root', '520928' ) or die( mysql_error() );//连接数据库服务器
          mysql_select_db( 'test' );//选择数据库
          mysql_set_charset( 'utf8' );//设置字符编码
 
             $sql = "SELECT * FROM wxtree";//查询分类表
          $result = mysql_query( $sql );
            $tree = array();//初始化一个数组
          while( $row  = mysql_fetch_assoc( $result ) )
                 {                  
                     $tree[$row['fid']][$row['id']]  = $row['cat_name'];//创建分类数组                                                  
                 }
          mysql_close( $link );//关闭数据库
  
        print_r($tree[02]);
echo '-------------------------------------------' . "\n";
 
//递归函数
  
function for_category( $arr = array(), $arr2 )

    echo "<ul>";
    foreach ( $arr as $k => $v )
    {   
        if ( isset( $arr2[$k] ) && is_array( $arr2[$k] ) )
        {  
           echo "<li>$k $v<td>  &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<td><a href="http://www.w3school.com.cn">W3School</a>&nbsp添加</td><td>&nbsp编辑&nbsp</td><td>&nbsp删除&nbsp</td>" ;          


             for_category( $arr2[$k], $arr2 );           
             echo "</li>";          
        }
        else{
             echo "<li>$k $v<td>  &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<td><a href="http://www.w3school.com.cn">W3School</a>&nbsp添加</td><td>&nbsp编辑&nbsp</td><td>&nbsp删除&nbsp</td> </li>" ;
        }              
    } 
    echo "</ul>";     
}
   for_category( $tree[0], $tree );

?>
<a href="http://www.w3school.com.cn">W3School</a>
 </body>
</html>
//链接正确,这里 echo "<li>$k $v<td>  &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<td><a href="http://www.w3school.com.cn">W3School</a>&nbsp添加</td><td>&nbsp编辑&nbsp</td><td>&nbsp删除&nbsp</td>" ;        加入链接,为什么报错

php?href MySQL
[解决办法]
报错的原因是双引号中的双引号没有转义

但修改后依然不会达到你的目的
因为 td 标记不予许单独出现在 li 标记中
[解决办法]
tr、td 只能出现在 table 中

热点排行