PHP를 배우면서 스스로 다양한 기능을 개발하려고 하는 분들이 많을 거라 생각합니다. 혹시 PHP를 사용하여 블로그를 작성해 본 적이 있나요? 이 기사에서는 PHP를 사용하여 블로그를 구현하는 방법을 단계별로 설명합니다. 학습을 통해 PHP 블로그를 직접 작성할 수 있기를 바랍니다.
먼저 phpMyAdmin을 통해 블로그 테이블을 생성하세요.
순수한 인터페이스 작업은 비교적 간단합니다. id가 기본 키이고 auto_increnent 옵션이 설정되어 있으므로 필드가 비어 있으면 자동으로 증가합니다. 다른 필드는 좀 더 캐주얼하므로 유형과 길이에 주의하세요.
데이터 연결 만들기数据 数据 数据
.
<?php @mysql_connect("127.0.0.1:3306","root","") or die("mysql数据库连接失败"); @mysql_select_db("test")or die("db连接失败");mysql_query("set names 'gbk'"); ?>
블로그 추가
./wamp/www/blog/ 디렉토리에 add.php 파일을 생성하세요.<a href="index.php"><B>index</B></a> <a href="add.php"><B>add blog</B></a> <hr> <?phpinclude("conn.php"); //引入连接数据库if (!empty($_POST['sub'])) { $title = $_POST['title']; //获取title表单内容 $con = $_POST['con']; //获取contents表单内容 $sql= "insert into blog values(null,'0','$title',now(),'$con')"; mysql_query($sql); echo "insert success!"; } ?>
<form action="add.php" method="post"> title :<br> <input type="text" name="title"><br><br> contents:<br> <textarea rows="5" cols="50" name="con"></textarea><br><br> <input type="submit" name="sub" value="submit"> </form>
<a href="index.php"><B>index</B></a> <a href="add.php"><B>add blog</B></a> <br><br> <form action="" method="get" style='align:"right"'> <input type="text" name="keys" > <input type="submit" name="subs" > </form> <hr> <?phpinclude("conn.php"); //引入连接数据库 if (!empty($_GET['keys'])) { $key = $_GET['keys']; $w = " title like '%$key%'"; }else{ $w=1; } $sql ="select * from blog where $w order by id desc limit 5"; $query = mysql_query($sql); while ($rs = mysql_fetch_array($query)) {?> <h2>title: <a href="view.php?id=<?php echo $rs['id']; ?>"><?php echo $rs['title']; ?></a> | <a href="edit.php?id=<?php echo $rs['id']; ?>">edit</a> | <a href="del.php?id=<?php echo $rs['id']; ?>">delete</a> | </h2> <li>date: <?php echo $rs['data']; ?></li> <!--截取内容展示长度--> <p>contents:<?php echo iconv_substr($rs['contents'],0,30,"gbk"); ?>...</p> <hr> <?php };?>
<a href="index.php"><B>index</B></a> <a href="add.php"><B>add blog</B></a> <hr> <?phpinclude("conn.php"); //引入连接数据库 if (!empty($_GET['id'])) { $id = $_GET['id']; $sql ="select * from blog where id='$id' "; $query = mysql_query($sql); $rs = mysql_fetch_array($query); $sqlup = "update blog set hits=hits+1 where id='$id'"; mysql_query($sqlup); }?> <h2>title: <?php echo $rs['title']; ?> </h1> <h3>date: <?php echo $rs['data']; ?> click number: <?php echo $rs['hits']; ?></h3> <hr> <p>contents:<?php echo $rs['contents']; ?></p>
<a href="index.php"><B>index</B></a> <a href="add.php"><B>add blog</B></a> <hr> <?phpinclude("conn.php"); //引入连接数据库 //获取数据库表数据if (!empty($_GET['id'])) { $edit = $_GET['id']; $sql = "select * from blog where id='$edit'"; $query = mysql_query($sql); $rs = mysql_fetch_array($query); }//更新数据库表数据if (!empty($_POST['sub'])) { $title = $_POST['title']; //获取title表单内容 $con = $_POST['con']; //获取contents表单内容 $hid = $_POST['hid']; $sql= "update blog set title='$title', contents='$con' where id='$hid' "; mysql_query($sql); echo "<script>alert('update success.');location.href='index.php'</script>"; }?>
<form action="edit.php" method="post"> <input type="hidden" name="hid" value="<?php echo $rs['id'];?>"> title :<br> <input type="text" name="title" value="<?php echo $rs['title'];?>"> <br><br> contents:<br> <textarea rows="5" cols="50" name="con" ><?php echo $rs['contents'];?></textarea><br><br> <input type="submit" name="sub" value="submit"> </form>
마지막 단계는 블로그 삭제 기능을 구현하고, 해당 블로그의 ID를 통해 블로그를 조회하고 표시하는 것입니다.
이렇게 하면 블로그가 완성됩니다. 인터페이스가 그다지 아름답지는 않지만 기능은 아직 완성되어 있습니다. 관심 있는 친구들은 서둘러서 연습해 보세요.
관련 추천:
php 블로그 웹사이트 개발 예제 튜토리얼(1/8)_PHP tutorial
위 내용은 PHP로 만든 간단한 블로그 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!