


Illegal data processing of Get or Post submitted values_PHP tutorial
Illegal data processing of Get or Post submitted values
//***************************************************** ****
//-- Program name: StrSwap V1.01
//-- Program writing: [email]cngift@163.com[/email]
//-- Completion: 2002 -8-1
//-- Program purpose: illegal data processing of Get or Post submitted values
//-- Note: This program needs to be loaded and used before all program processing, so that it can be automatically performed
/ /-- Replacement of variables used in the program
//-- Emergency upgrade due to the discovery of serious BUG
//-- Copyright By cngift ◎ 2002
//********** ************************************************
class StrSwap{
//The connector used to connect variables when submitting variables in Get mode
var $GetSplitStr = "&&";
var $TempArray = array();
var $VariableArray = array();
//******************************** ************************
//-- Program name: Main()
//-- Program purpose: This category Default running mode
//-- Incoming parameters: none
//****************************** ******************************
function Main(){
global $REQUEST_METHOD;
if("GET"==$REQUEST_METHOD){
$this->SubGetStrToArray();
}
if("POST"==$REQUEST_METHOD){
$this->SubPostStrToArray();
}
$this->GlobalVariable();
}
//********************************************** ***********
//-- Program name: SubGetStrToArray()
//-- Program purpose: The method called when the variable is submitted in Get mode
// -- Incoming parameters: None
//************************************** ******************
function SubGetStrToArray(){
global $QUERY_STRING;
$this->TempArray = explode ($this->GetSplitStr,$QUERY_STRING);
for($i=0;$i
$temp = explode('=',$this->TempArray[$i]);
$this->VariableArray[$i][0] = $temp[0];
$this-> VariableArray[$i][1] = $this->StrReplace($temp[1]);
}
}
//***** *************************************************** *
//-- Program name: SubPostStrToArray()
//-- Program purpose: Method called when variables are submitted in POST mode
//-- Incoming parameters: None
//************************************************ ********
function SubPostStrToArray(){
global $_POST;
reset($_POST);
for($i=0;$i< ;count($_POST);$i++){
$this->VariableArray[$i][0] = key($_POST);
$this->VariableArray[$i] [1] = $this->StrReplace($_POST[key($_POST)]);
next($_POST);
}
}
// *************************************************** ******
//-- Program name: StrReplace()
//-- Program purpose: replace illegal characters in variables
//-- Incoming parameters: variable value
//*********************************************** *********
function StrReplace($str){
$str = StripSlashes($str);
$str = str_replace(chr(92), '',$str);
$str = str_replace(chr(47),'',$str);
$str = str_replace(chr(10).chr(13),"
",$str);
$str = str_replace('<',"<",$str);
$str = str_replace('>',">",$str);
$str = str_replace(';',";",$str);
$str = str_replace('"',""",$str);
$str = str_replace("' ","'",$str);
$str = str_replace(" "," ",$str);
$str = str_replace("/**/"," ",$str);
return trim($str);
}
//************************************************ ************
//-- Program name: GlobalVariable()
//-- Program purpose: Declare variables as global variables to facilitate calls from other programs
//- - Incoming parameters: None
//****************************************** *****************
function GlobalVariable(){
for($i=0;$i
global $$this->VariableArray[$i][0];
${$this->VariableArray[$i][0]} = $this->VariableArray[$i][1];
}
}
}
?>

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
