PHP实现注册登录

一、主页index.php


<html>
<head>
    <title>会员系统title>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="style.css">
    <style type="text/css">
        h3,div.start,div.reg,div.login{
      margin: 20px; text-align: center}
    style>
head>
<body>

    if(isset($_GET['index'])){
        include $_GET['index'].'.inc.php';
    }else{
        include 'start.inc.php';
    }
?>
body>
html>

二、起始页start.inc.php
这里写图片描述

<h3>欢迎光临会员俱乐部h3>
<div class = "start">
    <a href="index.php?index=login">登录a>  
    <a href="index.php?index=reg">注册a>
div>

三、登录页login.inc.php
PHP实现注册登录_第1张图片

<h3>请登录您的账号h3>
    <div class="login">
        <form>
            <p>用户名:<input type="text" name="username">p>
            <p>密  码:<input type="password" name="password">p>
            <p><input type="submit" name="login" value="登录">p>
            <p><a href="?">[返回上一层]a>p>
        form>
    div>

四、注册页reg.inc.php
PHP实现注册登录_第2张图片

<h3>请注册你的个人信息表h3>
<div class="reg">
    <form action=""  method="get">
        <p>用户名:<input type="text" name="username">p>
        <p>密  码:<input type="password" name="password">p>
        <p>密码确认:<input type="password" name="password">p>
        <p>电子邮件:<input type="text" name="email">p>
        <p><input type="submit" name="send" value="注册">p>
        <p><a href="?">[返回上一层]a>p>
    form>
div>

你可能感兴趣的:(PHP小项目,登录-注册-PHP)