php 登录访问有关问题
php 登录访问问题
做个简单的录入网页
登录是可以了 但是 我想 一个用户 只能管理一个村的数据 现在登录进去之后 地址栏?id= 后面我可以随便修改 一样能登录···
比如 一个人用1帐号登录进来 只能管理1的数据 但是在地址栏把1 改成2 他就可以管理2的数据 怎么限制的·· 本人菜鸟 表示很蛋疼 在线跪求大手
<?php $conn=mysql_connect("localhost","xypi20","a16812343"); mysql_select_db("js"); mysql_query("set names 'gb2312'"); if(isset( $_POST["user"])){ $user=$_POST["user"]; $password=$_POST["password"]; $sql="select * from login where user='{$user}'and password='{$password}'"; $query=mysql_query($sql); $array=mysql_fetch_array($query); if($user==$array{'user'} and $password==$array{'password'} ){ $kind=$array{'kind'}; session_start(); $_SESSION['keyword']= "$kind"; echo"<script>alert('登录成功!');location.href='test.php?id=$kind';</script>"; } else echo"<script>alert('请重新登录!');location.href='login.php';</script>"; } ?>
管理界面
<?php $conn=mysql_connect("localhost","xypi20","a16812343"); mysql_select_db("js"); mysql_query("set names 'gb2312'"); $kind = $_GET['id']; /*session_start(); if(!isset($_SESSION['keyword'])) echo"<script>alert('请登录!');location.href='login.php';</script>";*/ echo $kind; session_start(); if( isset($_SESSION['keyword']) !=$kind) echo"<script>alert('请登录!');location.href='login.php';</script>"; ?> <?php if(isset($_POST["name"],$_POST["time"])){ $name=$_POST["name"]; $time=$_POST["time"]; echo $name; echo $time; echo $kind; $sql="SELECT * FROM 数据 where kind='$kind' "; if($name) //name不为空 { $sql .=" and 姓名='$name' "; if($time) $sql .=" and 录入时间='$time' "; } elseif($time) { $sql .="and 录入时间='$time'"; }
问题就在这查询里面我 是直接 where kind='$kind' 所以不管用什么帐号登录进来 修改地址栏的kind就可以查询别的数据了···
以上就是对使用PHP实现生成HTML静态页面,php静态页面的全部介绍,如果您想了解更多有关php编程入门,请关注PHP中文网。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov
