search
7、源代码Jun 13, 2016 pm 12:24 PM
htmlpasswdphprequire

一个简单的PHP在线书签系统

1、需求分析

   首先,需要识别每个用户。应该有验证机制。

其次,需要保存单个用户的书签。用户应该能够添加和删除书签。

再次,需要根据对他们的了解,向用户建议他们可能感兴趣的站点。


2、解决方案

2.1 系统流程图

2.2 PHPbookmark中的文件列表

文件名

描述

bookmarks.sql

创建PHPbookmark数据库SQL语句

login.php

包含系统登录表单的页面

register_form.php

系统中用户注册表单

register_new.php

处理新注册信息的脚本

forgot_form.php

用户忘记密码后需要填写的表单

forgot_passwd.php

重新设置遗忘密码的脚本

member.php

用户的主页面,包含该用户所有的当前书签

add_bm_form.php

添加书签的表单

add_bms.php

将书签真正添加到数据库中的脚本

delete_bms.php

从用户的书签列表中删除选定书签的脚本呢

recommend.php

基于用户以前的操作,推荐用户可能感兴趣的书签

change_passwd_form.php

用户修改密码时要填写的表单

change_passwd.php

修改数据库中用户密码的表单

logout.php

将用户注销的脚本

bookmark_fns.php

应用程序的包含文件集合

data_valid_fns.php

确认用户输入数据有效的函数

db_fns.php

连接数据库的函数

user_auth_fns.php

用户身份验证的函数

url_fns.php

增加和删除书签的函数

output_fns.php

HTML形式格式化输出的函数

bookmark.gif

PHPbookmarklogo图标



3、实现数据库

create database bookmarks;use bookmarks;create table user  (  username varchar(16) primary key,  passwd char(40) not null,  email varchar(100) not null);create table bookmark (  username varchar(16) not null,  bm_URL varchar(255) not null,  index (username),  index (bm_URL));grant select, insert, update, deleteon bookmarks.*to [email protected] identified by 'password';

4、实现基本的网站

4.1 login.php

<?php /** * @author switch * @copyright 2015 * 包含系统登录表单的页面 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);   //应用程序的包含文件集合        do_html_header(&#39;&#39;); //HTML标题        display_site_info();//HTML站点信息    display_login_form();//HTML登录信息        do_html_footer();   //HTML页脚?>

4.2 bookmark_fns.php

<?php /** * @author switch * @copyright 2015 * 应用程序的包含文件集合 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;data_valid_fns.php&#39;); //确认用户输入数据有效的函数    require_once(&#39;db_fns.php&#39;); // 连接数据库的函数    require_once(&#39;user_auth_fns.php&#39;);  //用户身份验证的函数    require_once(&#39;output_fns.php&#39;); //以HTML形式格式化输出的函数    require_once(&#39;url_fns.php&#39;);    //增加和删除书签的函数?>

5、实现用户身份验证

5.1 register_form.php

<?php /** * @author switch * @copyright 2015 * 系统中用户注册表单 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    do_html_header(&#39;User Registration&#39;);    //HTML标题        display_registeration_form();   //输出注册表单        do_html_footer();   //HTML页脚?>

5.2 register_new.php

<?php /** * @author switch * @copyright 2015 * 处理新注册信息的脚本 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);        //创建变量    $email = $_POST[&#39;email&#39;];    $username = $_POST[&#39;username&#39;];    $passwd = $_POST[&#39;passwd&#39;];    $passwd2 = $_POST[&#39;passwd2&#39;];    //开启会话    session_start();        try    {        //检查表单是否填写满        if(!filled_out($_POST))        {            throw new exception(&#39;You have not filled the form out correctly - please go back and try again.&#39;);        }                //检查邮件地址是否有效        if(!valid_email($email))        {            throw new exception(&#39;That is not a vald email address. Please go back try again.&#39;);        }                //检查两次输入密码是否相同        if($passwd != $passwd2)        {            throw new exception(&#39;The passwords you entered do not match - please go back try again.&#39;);        }                //检查密码长度是否合格        if((strlen($passwd) < 6) || (strlen($passwd) > 16))        {            throw new exception('Your password must be between 6 and 16 characters Please go back and try again.');        }                //尝试注册        register($username,$email,$passwd);                //注册会话变量        $_SESSION['valid_user'] = $username;                //提供成员页面链接        do_html_header('Registration successful');  //HTML标题        echo 'Your registration was successful.Go to the members page to start setting up your bookmarks!'; //输出URL        do_html_URL('member.php','Go to members page'); //HTML页脚        do_html_footer();   //HTML页脚    }    catch(exception $e)    {        do_html_header('Problem:');        echo $e->getMessage();        do_html_footer();        exit;    }?>

5.3 member.php

<?php /** * @author switch * @copyright 2015 * 用户的主页面,包含该用户所有的当前书签 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();        //创建变量    $username = @$_POST[&#39;username&#39;];    $passwd = @$_POST[&#39;passwd&#39;];        if($username && $passwd)    {        try        {            login($username,$passwd);            //如果该用户在数据库中,则注册会话变量            $_SESSION[&#39;valid_user&#39;] = $username;        }        catch(exception $e)        {            //登录不成功            do_html_header(&#39;Problem:&#39;);            echo &#39;You could not be logged in. You must be logged in to view this page.&#39;;            do_html_URL(&#39;login.php&#39;,&#39;Login&#39;);            do_html_footer();            exit;        }    }        do_html_header(&#39;Home&#39;);    check_valid_user();        //获取用户的书签    if($url_array = get_user_urls($_SESSION[&#39;valid_user&#39;]))        display_user_urls($url_array);    //获取用户菜单选项    display_user_menu();    do_html_footer();?>

5.4 logout.php

<?php /** * @author switch * @copyright 2015 * 将用户注销的脚本 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();    $old_user = $_SESSION[&#39;valid_user&#39;];        //注销会话变量    unset($_SESSION[&#39;valid_user&#39;]);    $result_dest = session_destroy();        do_html_header(&#39;Logging Out&#39;);        if(!empty($old_user))    {        if($result_dest)    //登出成功        {            echo &#39;Logged out.<br />';            do_html_URL('login.php','Login');        }        else    //不成功        {            echo 'Could not log you out.<br>';        }    }    else    {        echo 'You were not logged in, and so have not been logged ot.<br>';        do_html_URL('login.php','Login');    }    do_html_footer();?>

5.5 change_passwd.php

<?php /** * @author switch * @copyright 2015 * 修改数据库中用户密码的表单 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();    do_html_header(&#39;Changing password&#39;);        //创建变量    $old_passwd = $_POST[&#39;old_passwd&#39;];    $new_passwd = $_POST[&#39;new_passwd&#39;];    $new_passwd2 = $_POST[&#39;new_passwd2&#39;];        try    {        check_valid_user();        if(!filled_out($_POST))            throw new exception(&#39;You have not filled out the form completely.Please try again.&#39;);                if($new_passwd != $new_passwd2)            throw new exception(&#39;Passwords entered were not the same. Not changed.&#39;);                    if((strlen($new_passwd) > 16) || (strlen($new_passwd) getMessage();    }    display_user_menu();    do_html_footer();?>

5.6 forgot_paswd.php

<?php /** * @author switch * @copyright 2015 * 重新设置遗忘密码的脚本 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    do_html_header("Resetting password");        //创建变量    $username = $_POST[&#39;username&#39;];        try    {        $passwd = reset_password($username);        notify_password($username,$passwd);        echo &#39;Your new password has been emailed to you.<br />';    }    catch(exception $e)    {        echo 'Your password could not be reset - please try again later.';    }    do_html_URL('login.php','Login');    do_html_footer();?>

6、实现书签的存储和检索

6.1 add_bms.php

<?php /** * @author switch * @copyright 2015 * 添加书签的表单 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();        //创建变量    $new_url = $_POST[&#39;new_url&#39;];        do_html_header(&#39;Adding bookmarks&#39;);        try    {        check_valid_user(); //检查用户有效性        if(!filled_out($new_url))   //检查表单是否填写            throw new exception(&#39;Form not completely filled out.&#39;);        if(strstr($new_url,&#39;http://&#39;) === false)            $new_url = &#39;http://&#39;. $new_url;        if(!(@fopen($new_url,&#39;r&#39;))) //可以调用fopen()函数打开URL,如果能打开这个文件,则假定URL是有效的            throw new exception(&#39;Not a valid URL.&#39;);        add_bm($new_url);   //将URL添加到数据库中        echo &#39;Bookmark added.&#39;;        if($url_array = get_user_urls($_SESSION[&#39;valid_user&#39;]))            display_user_urls($url_array);    }    catch(exception $e)    {        echo $e ->getMessage();    }    display_user_menu();    do_html_footer();?>

6.2 delete_bms.php

<?php /** * @author switch * @copyright 2015 * 从用户的书签列表中删除选定书签的脚本呢 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();        //创建变量    $del_me = @$_POST[&#39;del_me&#39;];    $valid_user = $_SESSION[&#39;valid_user&#39;];        do_html_header(&#39;Deleting bookmarks&#39;);    check_valid_user();        if(!filled_out($del_me))    //    {        echo &#39;<p>You have not chosen any bookmarks to delete.<br>Please try again.';        display_user_menu();        do_html_footer();        exit;    }    else    {        if(count($del_me) > 0)        {            foreach($del_me as $url)            {                if(delete_bm($valid_user,$url))                {                    echo 'Deleted '. htmlspecialchars($url) .'.<br>';                }                else                {                    echo 'Could not delete '. htmlspecialchars($url) .'.<br>';                }            }        }        else        {            echo 'No bookmarks selected for deletion';        }    }    if($url_array = get_user_urls($valid_user))    {        display_user_urls($url_array);    }    display_user_menu();    do_html_footer();?>

6.3 recommend.php

<?php /** * @author switch * @copyright 2015 * 基于用户以前的操作,推荐用户可能感兴趣的书签 */    //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。    require_once(&#39;bookmark_fns.php&#39;);    session_start();    do_html_header(&#39;Recommending URLs&#39;);    try    {        check_valid_user();        $urls = recommend_urls($_SESSION[&#39;valid_user&#39;]);        display_recommended_urls($urls);    }    catch(exception $e)    {        echo $e ->getMessage();    }    display_user_menu();    do_html_footer();?>

7、源代码

下载地址



版权声明:本文为博主原创文章,未经博主允许不得转载。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),