1

在这里,我使用 AJAX 和 PHP 检索数据库的值。我将照片/image1.jpg 等图像的路径存储在数据库中。从数据库中检索该数据并将其发回时,该数据不会被打印回来,因为其中包含反斜杠或前斜杠。那么在使用 AJAX 时将该数据发送回包含特殊字符的主页的过程是什么?

我的 JavaScript 代码:

 function getdata(eve)
    {
    var xmlhttp;    
    if (window.XMLHttpRequest)
      {// code for IE7+, Firefox, Chrome, Opera, Safari
      xmlhttp=new XMLHttpRequest();
      }
    else
      {// code for IE6, IE5
      xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    xmlhttp.onreadystatechange=function()
      {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {


        document.getElementById("grayscreen").innerHTML=xmlhttp.responseText;
    } }
    xmlhttp.open("GET","picdetails.php?q="+eve,true);
    xmlhttp.send();

我的 PHP 代码

    <?php
    include 'config.php';
        $query2="select * from Sampletable where sublabel= '".$_GET['q']."'";
        $query=mysql_query($query2);

                        if(mysql_num_rows($query)>0)
                        {
                            $count=0;
                            while($res=  mysql_fetch_array($query))
                            {
                                if($count==0)
                                {
                                    $ans= "<img src=". $res['image']."\>";
                                    echo $ans;
                                }
                        else {
                                    echo "<img src=".$res['image']." style='display:none'/>";
                        }
                        $count=$count+1;
                            }    
    }
    ?>

这里 $res['image'] 是图像的路径,类似于 images/image1.jpg ,将从数据库中检索。

屏幕上的输出是

    "<img src="\\">"<img src="style='display:none'/">

但输出应该是

    <img src="images/images1.jpg"/> <img src="images/images2.jpg" style='display:none'/>

问题是从中检索的数据是 images/images1.jpg 和 images/images2.jpg 没有得到回显,因为它有前斜线。

如何打印该数据?

4

1 回答 1

0

改变:

$ans= "<img src=". $res['image']."\>";

至:

$ans= '<img src="'. $res['image'] .'"/>';

这应该有效。

希望能帮助到你!

于 2013-12-03T16:37:44.077 回答