0

フォーラムを検索する検索バーを作成し、カテゴリ テーブルを検索して結果を表示しましたが、見つかった結果にリダイレクトするリンクを作成したいと考えています。たとえば、ビジネスというカテゴリを検索すると、結果ですが、クリックするとそのカテゴリにリダイレクトされるように結果にリンクが必要ですが、エラーが発生します

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in C:\xampp\htdocs\mysite\captcha2\tut.php on line 43

43行目の私のコードは

<td>'.$category_title.="<a href='view_category.php?cid=".$id."' class='cat_links'>".$title." - <font size='-1'>".$description."</font></a>"'</td> 
                    </tr>'

これが私の検索バーコードです

if(isset($_POST['search'])){ //form submitted, clicked Submit Search 
    $query = strip_tags(mysql_real_escape_string($_POST['query'])); //try to prevent sql injections
    if(!$query){ //not enterered a query 
        echo 'You must enter a search query!'; 
    }else{ 

        $table = 'categories'; //the table you want to search 
        $row = 'category_title'; //the row in which you want to search 

        $sql = mysql_query("SELECT * FROM `".$table."` WHERE `".$row."` LIKE '%".$query."%'"); //search query 
        if($sql){ //no errors 
            if(mysql_num_rows($sql) == 0){ //No results found. 
                echo 'No results were found for <strong>'.$query.'</strong>'; 
            }else{ //one or more results have been found 
                echo 'We have found <strong>'.mysql_num_rows($sql).'</strong> for <strong>'.$query.'</strong>.<br><br> 
                <table> 
                    <tbody> 
                        <tr> 

                            <td><strong>category_title</strong></td> 
                        </tr>'; 
                while($r = mysql_fetch_array($sql)){ //get data of every user where their category_title is like the $query string 

                    $category_title = $r["category_title"]; 
                    //lets put the part they searched in bold. 
                    $category_title = str_ireplace($query, '<strong>'.$query.'</strong>', $category_title); 
                    //lets put the part they searched in bold. 
                    echo '<tr> 

                <td>'.$category_title.="<a href='view_category.php?cid=".$id."' class='cat_links'>".$title." - <font size='-1'>".$description."</font></a>"'</td> 
                    </tr>'; 
                } 
                echo '</tbody></table>'; 
            } 
        }else{ 
            echo 'Sorry, an MySQL error occurred:<br><br>'.mysql_error(); //an error occurred, so echo it 
        } 
    } 
}else{ //not clicked Submit Search, so echo the form 
    echo '<h3>Search</h3> 
    <br><br> 
    <form method="post"> 
        <label for="q"></label> <input type="text" size="100" name="query" id="q" value="m0nsta."> 
        <input type="submit" name="search" value="Search"> 
    </form>'; 
} 
?>
4

3 に答える 3

3

= 記号と余分な引用符を取り除く

<td>'.$category_title.="<a href='view_category.php?cid=".$id."' class='cat_links'>".$title." - <font size='-1'>".$description."</font></a>"'</td> 
                </tr>'

する必要があります

<td>'.$category_title."<a href='view_category.php?cid=".$id."' class='cat_links'>".$title." - <font size='-1'>".$description."</font></a></td> 
                </tr>"
于 2012-12-28T06:29:00.940 に答える
1
."</font></a>"'</td> 
                    </tr>'; 

これは二重引用符で終わる必要があり、単一のようなものではありません

echo '<tr> <td>'.$category_title."<a href='view_category.php?cid=".$id."' class='cat_links'>".$title." - <font size='-1'>".$description."</font></a></td></tr>"; 
于 2012-12-28T06:30:01.553 に答える
0

使用する

 <td>'.$category_title."=<a href='view_category.php?cid=".$id."'      class='cat_links'>".$title." - <font size='-1'>".$description."</font></a></td> 
                    </tr>'";

Eclipse IDE を習慣として使用すると、このようなエラーを回避するのに非常に役立ちます。

于 2012-12-28T06:31:51.977 に答える