PHP+Mysql+jQuery實現發布微博程式 php篇_php執行個體

來源:互聯網
上載者:User

先還是要說明本例的商務程序:
1、前端使用者輸入內容,並對輸入的內容字數進行即時統計。
2、使用者提交資料,jQuery實現通過Ajax向後台發送資料。
3、後台PHP接收提交表單的資料,並對資料進行必要的安全過濾。
4、後台PHP串連Mysql資料庫,並將提交過來的表單資料寫入到相應的資料表中。
5、後台向返回成功結果資料內容,並通過Ajax將返回的資料內容插入到前端頁面中。
上述1、2步在前篇文章:jQuery篇已講解了,本文將完成剩餘的散步。

效果圖:

資料表
首先我們要準備一個資料表,表結構如下:

CREATE TABLE `say` (  `id` int(11) NOT NULL auto_increment,  `userid` int(11) NOT NULL default '0',  `content` varchar(200) NOT NULL,  `addtime` int(10) NOT NULL,  PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 

注意,本例中將時間欄位:addtime的類型設定為int,是為了後續的時間處理方便,在很多應用中(如Discuz論壇)都是將時間類型轉成數字型。
時間軸處理函數和格式化輸出資料行表函數:
時間軸處理函數,就是把時間轉換成我們看到的諸如“5分鐘前”,“昨天 10:21”等形式,代碼如下:

/*時間轉換函式*/ function tranTime($time) {  $rtime = date("m-d H:i",$time);  $htime = date("H:i",$time);  $time = time() - $time;   if ($time < 60) {   $str = '剛剛';  }  elseif ($time < 60 * 60) {   $min = floor($time/60);   $str = $min.'分鐘前';  }  elseif ($time < 60 * 60 * 24) {   $h = floor($time/(60*60));   $str = $h.'小時前 '.$htime;  }  elseif ($time < 60 * 60 * 24 * 3) {   $d = floor($time/(60*60*24));   if($d==1)    $str = '昨天 '.$rtime;   else    $str = '前天 '.$rtime;  }  else {   $str = $rtime;  }  return $str; } 

格式化輸出函數是將得到的使用者資訊和發布內容及時間按照一定的格式輸出到前端頁面的函數,代碼如下:

function formatSay($say,$dt,$uid){  $say=htmlspecialchars(stripslashes($say));   return'  <div class="saylist"><a href="#"><img src="images/'.$uid.'.jpg" width="50" height="50"  alt="demo" /></a>  <div class="saytxt">  <p><strong><a href="#">demo_'.$uid.'</a></strong> '. preg_replace('/((?:http|https|ftp):\/\/(?:[A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+): ?(\d+)?\/?[^\s\"\']+)/i','<a href="$1" rel="nofollow" target="blank">$1</a>',$say).'  </p><div class="date">'.tranTime($dt).'</div>  </div>  <div class="clear"></div>  </div>'; } 

將以上兩個函數都放入function.php中,準備隨時被調用。
submit.php處理表單資料
在之前文章中,我們知道jQuery將前端獲得的資料以POST方式,通過Ajax提交給了背景submit.php。那麼submit就是要完成後續的所有一攤子任務。請看代碼:

require_once('connect.php'); //資料庫連接檔案 require_once('function.php'); //函數調用檔案  $txt=stripslashes($_POST['saytxt']); //擷取提交的資料 $txt=mysql_real_escape_string(strip_tags($txt),$link); //過濾HTML標籤,並轉義特殊字元 if(mb_strlen($txt)<1 || mb_strlen($txt)>140)  die("0"); //判斷輸入字元數是否符合要求 $time=time(); //擷取目前時間 $userid=rand(0,4); //插入資料到資料表中 $query=mysql_query("insert into say(userid,content,addtime)values('$userid','$txt','$time')"); if(mysql_affected_rows($link)!=1)  die("0"); echo formatSay($txt,$time,$userid); //調用函數輸出結果 

注意,本例中為了示範,將使用者ID(userid)進行隨機處理,實際的應用是擷取目前使用者的ID。另外資料庫連接檔案,大家可以自己寫一個,在我提供的下載的DEMO裡也有這個檔案。
最後要回到前端頁面index.php來。index.php主要除了提供輸入的入口,還要承接幕後處理返回的結果,並且要將資料庫裡已有的資料顯示出來。代碼如下:

<?php define('INCLUDE_CHECK',1); require_once('connect.php'); require_once('function.php');  $query=mysql_query("select * from say order by id desc limit 0,10"); while ($row=mysql_fetch_array($query)) {  $sayList.=formatSay($row[content],$row[addtime],$row[userid]); } ?> <form id="myform" action="say.php" method="post">  <h3><span class="counter">140</span>說說你正在做什麼...</h3>  <textarea name="saytxt" id="saytxt" class="input" tabindex="1" rows="2" cols="40"></textarea>  <p>  <input type="submit" class="sub_btn" value="提 交" disabled="disabled" />  <span id="msg"></span>  </p> </form> <div class="clear"></div> <div id="saywrap"> <?php echo $sayList;?> </div> 

以上就是本文的全部內容,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.