Securing Passwords With PHP

Posted by & filed under Learn PHP Now.

Any website that stores users login information has to store their passwords. One thing that provides an extra layer of security for your users information is to do one way encryption on their passwords. You could in theory store their passwords as plain text, but if someone were able to get in to your database,… Read more »

An Introduction to Ajax Using jQuery

Posted by & filed under Uncategorized.

Today I will take you through a very basic Ajax example using jQuery. Usually Ajax can be cumbersome to use, but with jQuery it is very simple.