帮忙看下一个php文件,没有效果,不知道错哪了
帮忙看下一个php文件,没有效果,不知道哪里错了
通过http://127.0.0.1/index.php?id=2的形式访问,以下是index.php的代码
数据库都是正确架构了的.但是有访问以后无法添加到数据库里面,
这个文件是一个推广的php文件,就是通过上面的地址访问以后会增加uid为2的用户积分.请人帮忙看下哪里错误了,先谢谢了
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --><?php require_once (dirname(__FILE__) . "/include/common.inc.php"); require_once DEDEINC."/arc.partview.class.php"; if(empty($id)) {//检测是否使用ID推广,括号1 //检测不到有ID 就执行 检测U if(empty($u)) {//检测是否使用U推广,括号1 //检测不到ID和U推广,就执行官方原来的 $GLOBALS['_arclistEnv'] = 'index'; $row = $dsql->GetOne("Select * From `#@__homepageset`"); $row['templet'] = MfTemplet($row['templet']); $pv = new PartView(); $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/" . $row['templet']); $pv->Display(); }//检测是否使用U推广,括号2 else {//检测是否使用U推广,括号3 //检测IP开始 //************************************************* if ($_SERVER["HTTP_X_FORWARDED_FOR"]) { if ($_SERVER["HTTP_CLIENT_IP"]) { $proxy = $_SERVER["HTTP_CLIENT_IP"]; } else { $proxy = $_SERVER["REMOTE_ADDR"]; } $ip = $_SERVER["HTTP_X_FORWARDED_FOR"]; } else { if ($_SERVER["HTTP_CLIENT_IP"]) { $ip = $_SERVER["HTTP_CLIENT_IP"]; } else { $ip = $_SERVER["REMOTE_ADDR"]; } } //检测IP结束 //************************************************* if (isset($proxy)) { //判断是否有代理IP,括号1 ShowMsg("请不要使用代理IP!", 'index.php'); //检测到使用代理IP提示,结束 } //检测到使用代理IP提示,括号2 else//判断是否有代理IP 否则执行下面 { //判断是否有代理IP,括号3 //写入数据开始 $sql = "Select * from #@__tgreg where username='$u'"; //读取tgreg数据表,条件userid=网址id?=*** $NIC_arcRow = $dsql->GetOne($sql); //成立的条件,一条数据 $userid =$NIC_arcRow['userid']; //输出tgreg数据表中的username值 $username =$NIC_arcRow['username']; //输出tgreg数据表中的username值 $row = $dsql->GetOne("Select * From `#@__tgip` where userid='$userid' or username='$username' and tgip like '$ip' ");//读取数据,检测IP使用过了吗 if(is_array($row)) //检测重复就执行下面 {//检测重复就执行下面 括号1 header('location:index.php');//检测重复IP就执行跳转index.php exit(); }//检测重复就执行下面 括号2 结束 if(empty($username)) //检测用户空,就跳转index.php { //检测用户空 括号1 header('location:index.php');//就跳转index.php exit; } //检测用户空 括号2 结束 $tgip = $ip;//定义获取的IP地址 $time =time();//获取当前时间 $lailu =$_SERVER['HTTP_REFERER'];//获取来路 $query = "insert into `#@__tgip`(userid, username, time, tgip, lailu) values ('$userid', '$username', '$time', '$ip', '$lailu'); "; //写入数据 //写入数据结束 if($dsql->ExecuteNoneQuery($query)) //检测有写入就 {//检测有写入就 括号1 //预留 这里要写一句获取后台设定的数字,给jifena使用 以后就不用手工了 $jifena =100; //手工 设置jifena推荐一个增加多少积分 //预留 $jifenb =100;//设置jifenb推荐一个增加多少积分 //$dsql->ExecuteNoneQuery("update `#@__member` set `scores`= scores + $jifena where mid='".$userid."' ");//SQL执行写入用户加积分 //上面这句例子直接更新用户资料 加100积分,更新用户表 member //die($dsql); $dsql->ExecuteNoneQuery("update `#@__tgreg` set `jifena`=jifena + $jifena ,`cishu`=cishu+1 where userid='".$userid."' and username='".$username."' ");//SQL执行写入用户加积分 // 上面这句更新推广人的积分制度jifena类。注意区分A类和B类 用户表tgreg //$dsql->ExecuteNoneQuery("update `#@__tgreg` set `jifenb`= jifenb + $jifenb where userid='".$userid."' and username='".$username."' ");//SQL执行写入用户加积分 //预留 上面这句更新推广人的积分制度jifenb类。注意区分A类和B类 用户表tgreg header('location:index.php');//写入后也要跳转了 }//检测有写入就 括号2 exit();//检测重复IP 的退出 }//判断是否有代理IP结束,括号4 }//检测是否使用U推广结束,括号4 //---------------------- }//检测是否使用ID推广,括号2 else {//检测是否使用ID推广,括号3 //---------------------- //下面都是ID推广部分 //检测IP开始 //************************************************* if ($_SERVER["HTTP_X_FORWARDED_FOR"]) { if ($_SERVER["HTTP_CLIENT_IP"]) { $proxy = $_SERVER["HTTP_CLIENT_IP"]; } else { $proxy = $_SERVER["REMOTE_ADDR"]; } $ip = $_SERVER["HTTP_X_FORWARDED_FOR"]; } else { if ($_SERVER["HTTP_CLIENT_IP"]) { $ip = $_SERVER["HTTP_CLIENT_IP"]; } else { $ip = $_SERVER["REMOTE_ADDR"]; } } //检测IP结束 //************************************************* if (isset($proxy)) { //判断是否有代理IP,括号1 ShowMsg("请不要使用代理IP!", 'index.php'); //检测到使用代理IP提示,结束 } //检测到使用代理IP提示,括号2 else//判断是否有代理IP 否则执行下面 { //判断是否有代理IP,括号3 //写入数据开始 $sql = "Select * from #@__tgreg where userid='$id'"; //读取tgreg数据表,条件userid=网址id?=*** $NIC_arcRow = $dsql->GetOne($sql); //成立的条件,一条数据 $userid =$NIC_arcRow['userid']; //输出tgreg数据表中的username值 $username =$NIC_arcRow['username']; //输出tgreg数据表中的username值 $row = $dsql->GetOne("Select * From `#@__tgip` where userid='$userid' or username='$username' and tgip like '$ip' ");//读取数据,检测IP使用过了吗 if(is_array($row)) //检测重复就执行下面 {//检测重复就执行下面 括号1 ShowMsg("重复IP!", 'index.php?id=3'); header('location:index.php');//检测重复IP就执行跳转index.php exit(); }//检测重复就执行下面 括号2 结束 if(empty($username)) //检测用户空,就跳转index.php { //检测用户空 括号1 header('location:index.php');//就跳转index.php exit; } //检测用户空 括号2 结束 $tgip = $ip;//定义获取的IP地址 $time =time();//获取当前时间 $lailu =$_SERVER['HTTP_REFERER'];//获取来路 $query = "insert into `#@__tgip`(userid, username, time, tgip, lailu) values ('$userid', '$username', '$time', '$ip', '$lailu'); "; //写入数据 //写入数据结束 if($dsql->ExecuteNoneQuery($query)) //检测有写入就 {//检测有写入就 括号1 //预留 这里要写一句获取后台设定的数字,给jifena使用 以后就不用手工了 $jifena =100; //手工 设置jifena推荐一个增加多少积分 //预留 $jifenb =100;//设置jifenb推荐一个增加多少积分 //$dsql->ExecuteNoneQuery("update `#@__member` set `scores`= scores + $jifena where mid='".$userid."' ");//SQL执行写入用户加积分 //上面这句例子直接更新用户资料 加100积分,更新用户表 member //die($dsql); $dsql->ExecuteNoneQuery("update `#@__tgreg` set `jifena`=jifena + $jifena ,`cishu`=cishu+1 where userid='".$userid."' and username='".$username."' ");//SQL执行写入用户加积分 // 上面这句更新推广人的积分制度jifena类。注意区分A类和B类 用户表tgreg //$dsql->ExecuteNoneQuery("update `#@__tgreg` set `jifenb`= jifenb + $jifenb where userid='".$userid."' and username='".$username."' ");//SQL执行写入用户加积分 //预留 上面这句更新推广人的积分制度jifenb类。注意区分A类和B类 用户表tgreg header('location:index.php');//写入后也要跳转了 }//检测有写入就 括号2 exit();//检测重复IP 的退出 }//判断是否有代理IP结束,括号4 }//检测是否使用ID推广结束,括号4 ?> <div class="clear"> </div>

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

index.html represents the home page file of the web page and is the default page of the website. When a user visits a website, the index.html page is usually loaded first. HTML (HypertextMarkupLanguage) is a markup language used to create web pages, and index.html is also an HTML file. It contains the structure and content of a web page, as well as tags and elements used for formatting and layout. Here is an example index.html code: <

WindowsServerBackup is a function that comes with the WindowsServer operating system, designed to help users protect important data and system configurations, and provide complete backup and recovery solutions for small, medium and enterprise-level enterprises. Only users running Server2022 and higher can use this feature. In this article, we will explain how to install, uninstall or reset WindowsServerBackup. How to Reset Windows Server Backup If you are experiencing problems with your server backup, the backup is taking too long, or you are unable to access stored files, then you may consider resetting your Windows Server backup settings. To reset Windows

On the occasion of releasing the build 26040 version of Windows Server, Microsoft announced the official name of the product: Windows Server 2025. Also launched is the Windows11WindowsInsiderCanaryChannel version build26040. Some friends may still remember that many years ago someone successfully converted Windows NT from workstation mode to server mode, showing the commonalities between various versions of Microsoft operating systems. Although there are clear differences between Microsoft's current version of the server operating system and Windows 11, those who pay attention to the details may be curious: why Windows Server updated the brand,

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

How to modify the default name of nginx, you can disguise it a little, or you can install Tip: Generally, modifications are made before nginx is compiled. After modification, the code needs to be recompiled as follows: scr/core/nginx.conf#definenginx_version"1.4.7"#definenginx_ver"nginx/"n

While Microsoft released the Win11 preview update for the desktop, today it also released the Windows Server Long Term Service Channel (LTSC) preview Build 25335. As usual, Microsoft did not publish a complete change log, or even provide a corresponding blog post. Microsoft has adjusted the Windows Server preview version update log to make it the same as the Canary channel version. If no new content is introduced, the official blog post will not be posted. Note from IT Home: The server brand has not been updated and is still Windows Server 2022 in the preview version. In addition, Microsoft calls these versions Windows Server vNext instead of the Windows version that is already on the market.

If you think there is no need to install a graphical interface when installing Ubuntu Server 11.04, let alone GNOME 3, which is not yet complete. . Or it should be built with ARCH+GNOME3. So please don't waste your time reading any more. It took 2 nights and a day and reinstalled N times. Finally something has come of it. It's not easy. Without further ado, let’s get to the point: Hardware: One ThinkPad (For X61) 2. Enter the boot options interface, select USB boot, and then choose to install Ubu

According to reports on January 16, foreign technology media WindowsLatest reported that after Windows Server 2022 installed the KB5034129 update, it caused Chrome, Edge and Firefox browsers, as well as Adobe and other applications to have a white screen and be unable to display content. During the January 2024 Patch Tuesday event, Microsoft released the KB5034129 update, which is designed to resolve Wi-Fi adapter issues in Windows Server 2022. This update is widely recommended and should be installed by many companies to ensure system stability and performance. However, many users after installation and upgrade reported that the Windows Server 2022 update will cause
