최근에는 PHP코드를 살펴보는 시간을 가졌습니다.
첫번째는 통합환경입니다
먼저 phpMyAdmin을 통해 blog 테이블을 생성합니다.
순수한 인터페이스 작업은 프로세스가 비교적 간단합니다. id가 기본 키이고 auto_increnent 옵션이 설정되어 필드가 자동으로 증가함을 나타냅니다. 비어있을 때. 다른 필드는 좀 더 캐주얼하므로 유형과 길이에 주의하세요. ’ s to ’s
------ 디렉토리에 conn.php 파일을 생성합니다.
<?php
@mysql_connect("127.0.0.1:3306","root","") or die("mysql数据库连接失败");
@mysql_select_db("test")or die("db连接失败");mysql_query("set names 'gbk'");
?>
blog
는 test 라이브러리에 있으므로 연결해야 합니다. test 도서관. 추가 ./wamp/www/blog/ 디렉토리.
<a href="index.php"><B>index</B></a> <a href="add.php"><B>add blog</B></a> <hr> <?php include("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>
코드이고, include (또는 require
) 문은 require 문에 있는 모든 텍스트를 가져옵니다. 지정된 파일 / Code
/
include 문을 사용하여 파일에 복사합니다. 그러면 폼의 name='sub' 내용이 비어 있지 않다고 판단되면 폼의 내용을 가져온 후 $sql 문을 실행하게 되는데, null 은 id 비어 있음(자체적으로 증가)을 의미하고, now()는 현재 날짜를 의미하고,
$title 및 $con은 제출된 콘텐츠를 가져옴을 의미합니다. 형태의 사용자. 마지막으로 eche 성공적인 삽입을 위한 메시지가 표시됩니다. 아래 부분은 간단한 HTML코드로, 양식 제출을 blog할 수 있는 기능을 구현하는 데 사용됩니다. 创建blog的首页 在./wamp/www/blog/目录下创建index.php文件。 该页面包含有的功能还是比较多的。 首先是一个搜索表单,通过if判断搜索表单的内容是否为空,如果不为空,通过输入关键字匹配文章的标题并显示结果;如果为空查询所有blog内容,并循环显示每一篇文章的标题、日期、正文。点击标题会链接到该篇blog的详细页面。每一篇文章提供“编辑”和“删除”功能。 mysql_query()用于执行sql语句。mysql_fetch_arry()将返回的数据生成数组,这样就可以像操作数组一样,操作数据库中的每一条数据了。 然后是正文的显示,通过 iconv_substr() 函数提取正文前30个字符。 查看blog 在./wamp/www/blog/目录下创建view.php文件。 blog的正文实现比较简单,通过get请求获取blog的id,然后通过sql语句将该id对应的标题、日期和正文查询出来并显示。 并外一个小功能是显示了一个简单的计数器,每刷新页面,点击数加1。 编辑blog 在./wamp/www/blog/目录下创建edit.php文件。 编辑blog的功能相对复杂一些。分两部操作,第一步先将blog的标题和正文查询出来,并显示到输入框。第二步将编辑好的内容再更新到数据库中。 删除blog 在./wamp/www/blog/目录下创建del.php文件。 最后是实现blog的删除功能,通过id将该条blog的查询出来并显示。 因为所有页面没有使用前端样式有美化,很丑就不贴图了。功能还算完美。在此记录,算做PHP学习的整理。 ======================================================= 另外,虽然每个语言都有优缺点,这里还是忍不住要吐槽一下PHP的两个不好之处。 1、符号不好写, “$” 、“ ->” 、 “=>”。这些符号虽然并没有增加代码语法的理解难度。但敲起来具恶心。每次在打“$”符号的时候,都要眼看键盘按着shift键找4在哪儿。 2、php与html的混编在我看来也不是太优雅。 <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>
<?php
include("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>
<?php
include("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'];?> </h2>
<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>
<?php
include("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>
<a href="index.php"><B>index</B></a>
<a href="add.php"><B>add blog</B></a>
<hr>
<?php
include("conn.php"); //引入连接数据库
if (!empty($_GET['id'])) {
$del = $_GET['id']; //删除blog
$sql= "delete from blog where id='$del' ";
mysql_query($sql);
echo "delete success!";
}?>
위 내용은 PHP로 간단한 블로그를 만드는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!