用“查看源文件”看你客户端的html

解决方案 »

  1.   

    代码是border=\"0\"为什么啊?怎么改呢?
      

  2.   

    你这应该是 php.ini 的设置问题.找到 : magic_quotes_gpc = On
    改为 : magic_quotes_gpc = Off
      

  3.   

    改为 : magic_quotes_gpc = Off
    了还是不行啊
    %……………………EW¥
      

  4.   

    你可以把" 引号去掉了再进库,或者使用 stripslashes_deep() 
    例子 1. A stripslashes() example<?php
    $str = "Is your name O\'reilly?";// Outputs: Is your name O'reilly?
    echo stripslashes($str);
    ?>  
     
    注: stripslashes() is not recursive. If you want to apply this function to a mutli-dimensional array, you need to use a recursive function. 例子 2. Using stripslashes() on an array<?php
    function stripslashes_deep($value)
    {
        $value = is_array($value) ?
                    array_map('stripslashes_deep', $value) :
                    stripslashes($value);    return $value;
    }// Example
    $array = array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar"));
    $array = stripslashes_deep($array);// Output
    print_r($array);
    ?>  上例将输出:Array
    (
        [0] => f'oo
        [1] => b'ar
        [2] => Array
            (
                [0] => fo'o
                [1] => b'ar
            ))
      

  5.   

    谢谢ZqBokt(时窗) ,谢谢各位!已经搞定了!