0
<?php
require 'db.php';
include_once("header.php");
include_once("functions.php");
include_once("profile.php");

if(isset($_POST['search_term'])){
    $search_term = mysql_real_escape_string(htmlentities ($_POST['search_term']));

    if(!empty($search_term)){

        $search = mysql_query("SELECT `username`,`id` FROM `users` WHERE `username` LIKE '%$search_term%' and `business` <> 'business'");


        $result_count = mysql_num_rows($search);



        $suffix = ($result_count != 1) ? 's' : '';


        echo '<div data-theme="a">Your search for <strong>' , $search_term ,'</strong> returned <strong>', $result_count,' </strong> record', $suffix, '</div>';



        while($results_row = mysql_fetch_assoc($search)){
            echo '<div data-theme="a"><strong>', "<img src='/image/<?php echo $image; ?>' width= 50px height=50px>", $results_row['username'],  '</strong></div>';



$following = following($_SESSION['userid']);


    if (in_array($key,$following)){
        echo ' <div action= "action.php" method="GET" data-theme="a">
        <input type="hidden" name="id" value="$key"/>
        <input type="submit" name="do" value="follow" data-theme="a"/>
</div>';

    }else{
        echo " <div action='action.php' method='GET' data-theme='a'>
        <input type='hidden' name='id' value='$key'/>
        <input type='submit' name='do' value='follow' data-theme='a'/>
        </div>";

}

}

        }

}

?>

我需要一些帮助,将用户图像放入此代码的回显部分。我不确定如何做到这一点,以便将图像放在正确的搜索行上。任何建议将不胜感激。下面是我所指的代码行。谢谢。

而($results_row = mysql_fetch_assoc($search)){

echo ' ', "' width= 50px height=50px>", $results_row['username'], ' ';

4

4 回答 4

1

我在你的代码中没有看到$image任何定义,所以我假设图像是从数据库中提取的。

如果是这种情况,那么您将需要执行以下操作:

while($results_row = mysql_fetch_assoc($search)){
    echo '<div data-theme="a"><strong><img src="/image/'.$results_row['image'].'" style='width:50px;height:50px' />'.$results_row['username'].'</strong></div>';
}
于 2012-07-10T01:42:38.980 回答
0

写吧:

..."<img src='/image/<?php echo $image; ?>' width='50' height='50'>", ...

但是你确定50x50合适吗?您可能只想设置width=50并让浏览器相应地设置高度。

于 2012-07-10T01:45:21.930 回答
0
$image = 'someImage.png';    
echo '<div data-theme="a"><strong>', "<img src='/image/{$image}' width= 50px height=50px>", $results_row['username'],  '</strong></div>';
于 2012-07-10T01:45:30.017 回答
0

你会想要这样的东西:

<?php 
while($results_row = mysql_fetch_assoc($search)){
?>
<div data-theme="a">
  <img src="/image/<?php echo $image; ?>" width="50px" height="50px">
  <strong>
    <?php echo  $results_row['username']; ?>
  </strong>
</div>

<?php
}
?>

有几件事要检查:

  • 不要使用标签来包装标签。它们通常仅用于文本
  • 您没有在查询中选择任何图像。
  • 不要使用 echo 来输出丑陋的 html。
  • 不要使用 GET。
  • 使用准备好的语句(PDO 或 mysqli)来防止 mysql 注入。
于 2012-07-10T01:45:43.840 回答