当前位置: 代码迷 >> 综合 >> PHP实现的博客网站-个人相册微博-php图片分享网站基于lamp/wamp/MySQL/PhpStorm
  详细解决方案

PHP实现的博客网站-个人相册微博-php图片分享网站基于lamp/wamp/MySQL/PhpStorm

热度:64   发布时间:2023-11-23 05:38:56.0

目录

1 效果展示

?2 开发工具

3 数据结构

4 功能实现和主要代码


1 效果展示

 

 

2 开发工具

代码开发工具PhpStorm   Dreamweaver    

数据库管理工具Navicat 

环境套件Apache2.x  php7.x  MySQL 8.x 

LAMP或wamp,phpstudy  XAMPP   

 

3 数据结构

 1 admin管理员

字段名称

自动增长

字段类型

说明

id

-

int

ID

username

-

varchar

用户名

pwd

-

varchar

密码

 2 albuminfo照片表

字段名称

自动增长

字段类型

说明

id

-

int

ID

name

-

varchar

名称

body

-

varchar

介绍

adddate

-

datetime

日期

userid

-

varchar

用户ID

fj

-

varchar

照片地址

count

-

int

浏览次数

type

-

int

相册ID

 3 albumtype相册表

字段名称

自动增长

字段类型

说明

id

-

int

编号

typename

-

varchar

相册名称

userid

-

int

用户ID

 

4 功能实现和主要代码

 

根据网站的特点,并与用户进行沟通。要求本系统具有以下功能:

1.统一、友好的操作界面,用以保证系统的易用性。

2.较强的查询功能,便于用户查询各项信息。

3.添加评论的功能,方便用户对博主发表的文章添加评论。

4.添加了友情链接,方便用户进入其他网站。

5.博客文章管理功能,方便博主添加、修改、删除博客文章。

6.公告管理功能,方便博主添加、修改、删除公告信息。

7.日志管理功能,方便博主添加、修改、删除日志信息。

8.个人相片设置功能,方便博主添加、修改、删除相片功能。

9.朋友信息管理功能。方便博主添加、修改、删除朋友信息。

10.博主信息设置,方便及时更新博主信息。

 

 

 

照片类型管理代码

<?php
include("../db_conn.php");
if (isset($_POST['Submit'])) {$typename = $_REQUEST["typename"];$query = "insert into albumtype values ('','$typename')";$result = mysqli_query($conn, $query);if (mysqli_query($result)) {echo("<script language='javascript'>alert('失败,请联系管理员 !');window.location.href='albumtype_list.php';</script>");exit();} else {echo("<script language='javascript'>alert('添加成功!');window.location.href='albumtype_list.php';</script>");exit();}
}?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><script type="text/javascript" src="js/calendar/calendar.js"></script><title></title><style type="text/css"><!--body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}.tabfont01 {font-family: "宋体";font-size: 9px;color: #555555;text-decoration: none;text-align: center;}.font051 {font-family: "宋体";font-size: 12px;color: #333333;text-decoration: none;line-height: 20px;}.font201 {font-family: "宋体";font-size: 12px;color: #FF0000;text-decoration: none;}.button {font-family: "宋体";font-size: 14px;height: 37px;}html {overflow-x: auto;overflow-y: auto;border: 0;}--></style><link href="css/css.css" rel="stylesheet" type="text/css"/><script type="text/JavaScript"></script><link href="css/style.css" rel="stylesheet" type="text/css"/><style type="text/css"><!--.STYLE2 {color: #330000}--></style>
</head><body>
<form action="" method="post" enctype="multipart/form-data" name="myform"><tr><td><table id="subtree1" style="DISPLAY: " width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td height="40" class="font42"><table width="100%" border="0" cellpadding="4" cellspacing="1" bgcolor="#464646"class="newfont03"><tr class="CTitle"><td height="22" colspan="3" align="center" class="select_tr STYLE2"style="font-size:16px">照片类型添加</td></tr><tr bgcolor="#EEEEEE"><td width="9%" align="center" height="30">类型名称</td><td colspan="2"><input name="typename" class="text" id="typename"style="width:150px" size="50"/></td></tr><tr bgcolor="#FFFFFF"><td height="20" colspan="3"><div align="center"><input name="Submit" type="submit" value="提交"/><input name="Submit2" type="reset" value="重置"/></div></td></tr></table></td></tr></table><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td height="6"><img src="images/spacer.gif" width="1" height="1"/></td></tr><tr><td height="33">&nbsp;</td></tr></table></td></tr></table>
</form>
</body>
</html>

 

  相关解决方案