.load()関数で呼び出されたときにjquery/phpを使用して数値を更新しています。jquery.loadのphpエコー空白
ので、私は
<span id='draftCount'>1 Draft</span>
を持って言うことができますそして、私はそれを
$('#draftCount').load('countItems.php?cid=draftCount');
を更新するために呼び出しjqueryのは、今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内でペースします。 '<?' –
countItems.phpの全内容を元の投稿に追加しました。 <?ページの最初の行に表示されます。 – Andelas
ありがとうございます。私は実際に私が含んでいた接続ファイルの問題を発見しました。空白があり、気づいたことはありません:もう一度ありがとう! – Andelas