我正在使用一些jquery/php通過.load()函數調用時更新一個數字。Php從jquery.load回顯空白
所以可以說我有
<span id='draftCount'>1 Draft</span>
而jQuery的我打電話來更新它
$('#draftCount').load('countItems.php?cid=draftCount');
現在countItems.php
<?
include("connect.php");
mysql_select_db ("news");
$countWhat = $_GET['cid'];
if($countWhat == 'binCount') {
$pullBin = mysql_query("SELECT * FROM bin");
$count = mysql_num_rows($pullBin);
echo '$count';
}
if($countWhat == 'draftCount') {
$pullBin = mysql_query("SELECT * FROM `main` WHERE `active` < '2'");
$count = mysql_num_rows($pullBin);
if ($count == '1') $drafts = 'Draft';
if ($count != '1') $drafts = 'Drafts';
$count = "$count $drafts";
echo "$count";
}
?>
內部結果
<span id="draftCount">
4 Drafts</span>
如何擺脫'4草稿'上方的空白?是什麼造成的?
謝謝!
你可能有白人在開始'<?'之前加入countItems.php內部的節奏。 – 2010-12-12 03:30:59
我已將countItems.php的完整內容添加到原始文章中。 <?坐在頁面的第一行。 – Andelas 2010-12-12 03:34:24
謝謝。實際上,我在包含的連接文件中發現了問題。它有空白,我從未注意到:O再次感謝! – Andelas 2010-12-12 04:16:57