使用include时,php会在html中添加“”

时间:2013-08-19 01:57:45

标签: php javascript jquery mysql

我使用javascript从两个文件中捕获html。在其中一个文件中,我包含了连接到我的数据库的信息。

但是当我这样做时,php会在我的html中添加两个。所有文件都以UTF8编码保存。

Index.php html

<div class="f-l" id="right-column"></div>

Javascript.js

 $('#lead, #prospects').change(function() {
        var kund_id = 'kund_id=' + $('#lead option:selected, #prospects option:selected').attr('value');
        $.post(
            'get_kund.php',
            kund_id,
            function(data){
                $('#center-column').html(data)
        });

        $.post(
            'get_kontaktperson.php',
            kund_id,
            function(data){
                $('#right-column').html(data)
        }); return false;
    });

get_kontaktperson.php

include("db_connect.php");
$kund_id = $_POST['kund_id'];
$qry = "SELECT * FROM kontaktperson WHERE kund_id='$kund_id' ORDER BY id DESC";
$result=mysql_query($qry);
while($row=mysql_fetch_array($result))  {
echo 'some html'; }

db_connect.php

require_once('db_info_login.php');

$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link) {
    die('Failed to connect to server: ' 

. mysql_error());
    }   
    $db = mysql_select_db(DB_DATABASE);
    if(!$db) {
        die('Unable to select database');
    }
    mysql_query('SET NAMES utf8')

这会在get_kontaktperson.php:

的html代码上方添加“”

为什么这对我来说似乎是一个问题,<div class="kontaktperson">被某些东西错过了。如果我拿走包含它将显示正确的HTML内容。但是当我输入一些数据时,就会发生这种情况。右栏的保证金...... enter image description here

1 个答案:

答案 0 :(得分:9)

Chrome的网络检查员使用这两个引号来表示元素内的内容。由于没有内容,因此显示两个引号,其中没有任何内容。