Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
djmaze
Subject Matter Expert



Joined: May 15, 2004
Posts: 727
Location: http://tinyurl.com/5z8dmv

PostPosted: Wed Nov 26, 2008 4:07 pm Reply with quote

So i see a lot of newbies trying to figure out all the good things of POST and other input data.
The magic is easy but who did actually what i did?

POST
This one is easy.

  1. Is the key posted?
    Code:
    isset($_POST['key'])

  2. What kind of data should it contain: float, signed int, unsigned int, text, xhtml, other?

At #2 it gets tricky since everything is a string (or array) at first.


  • signed int
    Code:
    preg_match('#^-?\d+$#', $_POST['key'])

  • unsigned int
    Code:
    ctype_digit($_POST['key'])

  • float
    Code:
    preg_match('#(-?[0-9,]+)?(\.([0-9]+))?$|(-?[0-9\.]+)?(,([0-9]+))?$#D', $_POST['key'])

  • text (To output the data use htmlspecialchars() at the output level for any text string)
    Code:
    $_POST['key'] = strip_tags($_POST['key'])

  • xhtml can be validated in many ways, including tidy_repair_string()
    Code:
    $_POST['key'] = tidy_repair_string($_POST['key'], array('output-xhtml'=>1,'show-body-only'=>1,'newline'=>'LF'), 'ISO-8895-1');



FILES

Take a look at Only registered users can see links on this board! Get registered or login!

Hope it helps!

_________________
$ mount /dev/spoon /eat/fun auto,overclock 0 1
ERROR: there is no spoon
http://claimedavatar.net/ 
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Fri Nov 28, 2008 12:41 pm Reply with quote

Thanks DJM Smile
 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©