PHP practice: Competition registration system realizes simple single entry PHP cloud talent system PHP self-service website building system PHP independent online store system

WBOY
Release: 2016-07-29 08:54:05
Original
1324 people have browsed it

Directory structure:

php报名系统源码,php在线报名系统,php网上报名系统,crm客户管理系统php,分销系统php源码,php微信系统,php网店系统,php oa系统,飞飞影视系统php版,php商城系统,php后台管理系统,php网上商城系统,php云人才系统,php自助建站系统,php独立网店系

RegSystem/index.php

<?php
/**
 * Created by PhpStorm.
 * User: root
 * Date: 16-4-9
 * Time: 下午11:21
 *
 * 项目前台入口文件
 */
//网站单入口文件,单入口有很多好处
//处理URL参数
$module = isset($_GET['module'])?$_GET['module']:'index';

$host = $_SERVER['HTTP_HOST'];

if($module == 'admin'){
    //跳转进入后台登录
    header('Location: ' .'http://'.$host.'/RegSystem/Admin/index.php');
}

Copy after login

The above introduces the PHP training: the competition registration system implements a simple single entry, including the registration system and PHP content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!