0

所以我有问题,Firefox 没有显示我输入的查询的搜索表单结果,但代码在 Opera、Chrome、IE 和 Android 默认浏览器中正常工作。

这是搜索表格:

<div id="menu_right">
<div id="searchBar">
    <form id='search_form' method='POST' action='index.php?menu=search'>
        <input id="topSearchText" class="inputText" type="text" name="movie" size="30" onfocus="this.value=''" value="Search" style="color: rgb(119, 119, 119);"/>
        <input type="image" name="search_movies" value="Search" src="./images/search.png"/>
    </form>
</div>

这是代码的php部分:

<table width='100%' cellspacing='0' cellpadding='0' border='0'>
<tbody>
    <tr>
        <td class='normal_header' colspan='2'>Search Results</td>
        <td class='normal_header' width='40' align='center' nowrap=''>Score</td>
    </tr>
    <?php
     if(isset($_POST['search_movies']))
     {
        $movie=$tmdb->searchMovie($_POST['movie']);
        foreach ($movie['results'] as $value) {
            $filepath = $value['poster_path'];
            $image_url = $tmdb->getImageUrl($filepath, TMDb::IMAGE_POSTER, 'w92');
    echo "
    <tr>
        <td class='borderClass bgColor' width='50' valign='top'>
            <div class='picSurround'>
                <a  href='http://www.themoviedb.org/movie/{$value['id']}'>
                    <img border='0' src='{$image_url}'>
                </a>
            </div>
        </td>

        <td class='borderClass bgColor' valign='top'>
            <a href='http://www.themoviedb.org/movie/{$value['id']} '>
                <strong>{$value['title']}</strong>
            </a>
            <a class='button_add' title='Quick add movie to my list' href='addmovie.php?id={$value['id']}'>add</a>
            <div class='spaceit'>
                <a href='http://www.themoviedb.org/movie/{$value['id']}'>Read more about: {$value['title']}</a>
            </div>
        </td>
        <td class='borderClass bgColor' align='center'>{$value['vote_average']}</td>
    </tr>";
    }
    }
    ?>
</tbody>

是我的查询有问题还是某些标签有问题,因为我似乎找不到问题。

4

3 回答 3

0

您检查过可能创建的 error_log 吗?
另外..我在这里可能错了..但据我所知,php只解释双引号“”之间的代码,而不是单引号''之间的代码。

例如:

$test = 5;
echo "this string shows the value of $test"
echo 'this string just shows the string $test';
于 2013-07-17T11:30:01.693 回答
0

如果这是基于输入字段结果的搜索表单,那么它应该是;

isset($_POST['movie'])
于 2013-07-17T11:42:28.883 回答
0

看看这个问题: HTML Input (type=image) not working on Firefox 4

也许您的问题来自 Firefox 处理图像输入标签的方式。

编辑:此问题的已接受答案中的更多信息:Code working in Chrome but not in Firefox

这似乎是图像类型输入的常见“问题”。

于 2013-07-17T11:43:03.983 回答