Hi there,
I am going to be creating a CMS to practise my PHP skills and well to use on websites.
It's been a long time since I have done any PHP, mostly been working on windows based languages.
I still have all my resources from a while ago and I was reading through this again: http://php.robm.me.uk/
...and was wondering: Should I be filtering the user input even if i am not displaying it on the script, ie using the input in a conditional?
I am assuming the later from this:
...but i just wanted to make sure.
Are there any other guides/tutorials you think are necessary reads when it comes to PHP scurity, or does that cover it?
========
Also I want to make a login script, does anyone have any good tutorials/scripts for making a good...secure login script.
Thanks.
I am going to be creating a CMS to practise my PHP skills and well to use on websites.
It's been a long time since I have done any PHP, mostly been working on windows based languages.
I still have all my resources from a while ago and I was reading through this again: http://php.robm.me.uk/
...and was wondering: Should I be filtering the user input even if i am not displaying it on the script, ie using the input in a conditional?
I am assuming the later from this:
switch($_GET['page']) {
case "about":
include('about.php');
break;
case "news":
include('news.php');
break;
default:
include('home.php');
break;
}
...but i just wanted to make sure.
Are there any other guides/tutorials you think are necessary reads when it comes to PHP scurity, or does that cover it?
========
Also I want to make a login script, does anyone have any good tutorials/scripts for making a good...secure login script.
Thanks.
Last edited: