Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 这段代码为什么无法 加入链接啊

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

Jun 23, 2016 pm 02:14 PM

php href MySQL

<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>" ;        加入链接,为什么报错
Copy after login

回复讨论(解决方案)

报错的原因是双引号中的双引号没有转义

但修改后依然不会达到你的目的
因为 td 标记不予许单独出现在 li 标记中

那怎么办,还需要加

?

tr、td 只能出现在 table 中

加入table之后,就没有之前的效果了,

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

11 Best PHP URL Shortener Scripts (Free and Premium)

Introduction to the Instagram API Introduction to the Instagram API Mar 02, 2025 am 09:32 AM

Introduction to the Instagram API

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Working with Flash Session Data in Laravel

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Simplified HTTP Response Mocking in Laravel Tests

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

cURL in PHP: How to Use the PHP cURL Extension in REST APIs

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

Build a React App With a Laravel Back End: Part 2, React

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

12 Best PHP Chat Scripts on CodeCanyon

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

Notifications in Laravel

See all articles