[PHP-Budget-updates] phpbudget/includes functions.inc.php,1.1,1.2
Status: Planning
Brought to you by:
rodrigoh
|
From: <rod...@us...> - 2002-11-05 22:49:07
|
Update of /cvsroot/php-budget/phpbudget/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3347/includes
Modified Files:
functions.inc.php
Log Message:
working on auth code.
Index: functions.inc.php
===================================================================
RCS file: /cvsroot/php-budget/phpbudget/includes/functions.inc.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** functions.inc.php 23 Oct 2002 21:32:55 -0000 1.1
--- functions.inc.php 5 Nov 2002 22:49:02 -0000 1.2
***************
*** 10,24 ****
function check_input()
{
! foreach($_GET as $key=>$value)
! {
! addslashes($value);
! echo "$key: Value: $value<br\n";
! }
! foreach($_POST as $key=>$value)
! {
! addslashes($value);
! //debug _POST vars
! echo "$key: Value: $value<br>\n";
! }
?>
--- 10,24 ----
function check_input()
{
! foreach($_GET as $key=>$value)
! {
! addslashes($value);
! echo "$key: Value: $value<br\n";
! }
! foreach($_POST as $key=>$value)
! {
! addslashes($value);
! //debug _POST vars
! echo "$key: Value: $value<br>\n";
! }
?>
|