Ben. Load () fonksiyonu sayesinde çağrıldığında bir dizi güncelleştirmek için bazı jquery / php kullanıyorum.
bu yüzden söylüyorlar sağlar
<span id='draftCount'>1 Draft</span>
Ve jquery bunu güncellemek için çağrı
$('#draftCount').load('countItems.php?cid=draftCount');
Şimdi countItems.php iç
<?
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";
}
?>
Sonuç,
<span id="draftCount">
4 Drafts</span>
Nasıl '4 Taslaklar 'Yukarıdaki tüm bu boşluklarla kurtulurum? Ne buna neden oluyor?
Teşekkürler!