k4pil wrote:Hi there.
I'm going to start a project at university so thought i'd get some advice before i do.
In the project i am to develop a content management system for the University Biology Lab(don't ask why!). The online implentation is to have high security, as well as other features such as ease of use, reliability and so on.
My question is;
How suited is Php-MySql for this??
I have created a online management system before using php-MySql, but, i did not consider safety as there was no need.
Thanks in advance!
Hi!
I's just algorithm:
Firstly to you need exploring all what you can find in internet about php (
http://www.php.net/links) about session it's can help, and MySQL tables and how operate it (I'm use MySQL Manager by EMS, try find in google)
Secondly using session you can organize somethisg like this:
1 in additional table you are store:
a: userlogin string 20
b: userpassword string 20
c: userlastvisit date 8
d: userip string 15 (optional)
e: usersession string 32 (optional)
2 create function/class what check usersession or/and userip(current).
3 include this function/class into common or somthing like file
4 done
Good luck!