❶ 我想建個網站不知道那種源代碼好用啊!給個建議吧!
看你的網站類型,個人博客類使用wordpress,bo blog
如果做大型的內容類網站,使用dedecms
這些都是比價容易上手的php程序,而且花哨的模板風格很容易找
如果你是要做論壇,使用discuz
以上全部是php類型,如果你使用微軟的asp類型,我推薦你上站長網看看:chinaz
裡面的asp php jsp 所有的源碼都很齊全
❷ 推薦功能強大又安全的php博客系統
PHPWind多用戶博客個人主頁系統
PHPWind 推出大型多用戶博客(BLOG), 該系統以眾多個人日誌(主頁)為內容基礎, 為網站內容管理與發布提供了更好的解決方案!
(1) 以 .html 為鏈接模式架設整個網站, 讓站點的內容大量出現在各大搜索引擎
(2) 全面支持 二級域名 比如 我的個人主頁 http://yuling.phpwind.net
(3) 做為一個可獨立運行的系統, 同時可選擇性的與論壇會員及文章數據進行完美整合!
(4) 完全支持 RSS, 與 WAP 手機瀏覽, 用句廣告詞就是: 手機也能博客!
(5) 強大的系統管理, 能簡便地進行系統管理與用戶日誌管理!
(6) 採用多層設計, 根分類 -- 多級子分類 -- 系統團隊博客 -- 個人團隊博客 -- 個人主頁 -- 個人專輯
(7) 採用phpwind負載核心, 具備流暢的速度與高負載能力!
(8) 採用phpwind模版設計思想, 與多語言設計思想! 最大程度地進行擴展與設計!
❸ 超好玩魔盒ios源代碼
其實魔盒的源代碼還是挺簡單的,如下就是全部代碼:
<?php
require'./libs/Smarty.class.php';
$smarty=newSmarty();
$smarty->assign('title','博客正文');
if(!isset($_GET["blogid"])||!is_numeric($_GET["blogid"]))
{
$smarty->assign('info','您所查看的文章不存在或已經被刪除。');
$smarty->display('wrong.html');
exit();
}
$blogid=$_GET["blogid"];
$mysqli=newmysqli("localhost","root","","herblog");
$sql="selectid,datecreate,readcnt,commentcnt,title,blogfromblogwhereid='".$blogid."'";
$rst=$mysqli->query($sql);
if(!$rst)
{
//數據查詢出錯
$smarty->assign('info','伺服器忙,請稍後重試');
$smarty->display('wrong.html');
$mysqli->close();
exit();
}
if($row=$rst->fetch_array())
{
$smarty->assign('blog',array(
'id'=>$row[0],
'date'=>$row[1],
'readcnt'=>$row[2],
'commentcnt'=>$row[3],
'title'=>$row[4],
'blog'=>$row[5],
));
$hasComment=0;
$sql="select`id`,`date`,`ip`,`user`,`text`fromcommentwhere`blogid`='".$blogid."'";
$rst=$mysqli->query($sql);
if($rst)
{
$comments=array();
while($row=$rst->fetch_array())
{
$comments[]=array(
'date'=>$row[1],
'user'=>$row[3],
'text'=>$row[4]
);
$hasComment++;
}
$smarty->assign('comments',$comments);
}
$smarty->assign('hasComment',$hasComment);
$smarty->display('blog.html');
}
else
{
$smarty->assign('info','您所查看的文章不存在或已經被刪除。');
$smarty->display('wrong.html');
}
if($rst)
{
$rst->free();
}
$mysqli->close();
?>
❹ php博客源碼..不要博客系統那種..主要是新手研究用.
http://www..com/s?wd=php%B2%A9%BF%CD%D4%B4%C2%EB&n=2
網路一下多的是,不過好像都挺大的,您可以自已提取出來在進行二次開發