I have never even looked at PHP and am thinking of learning. Is it secure? Also, can you use an MSAccess database. I am thinking of translating a small ASP site to PHP...any suggestions? All feedback welcome..
For the most part, PHP is as secure as the code you write. There are some runtime configuration settings which can affect security, notably register_globals (
which are arrays that take the place of a number of the object properties you use in ASP to get input from forms, etc. You're probably also going to want to take a look at PHP's session-handling functions:
And before the obvious confusion point sets in, Apache is your web server (which can be anything you want), Windows (Win32 etc) is the OS that your web server runs on (which in this case must be Windows).
I also recommend that you look into one of the open source database servers, such as MySQL.
Access was engineered to be a single-user database engine. Although it can do multiuser apps, that functionality is an add-on that I've found to be not particularly stable. A database server can give you very good throughput and better data consistency.
Also, PHP can communicate with database servers using native communication libraries, which removes some of the performance hits you take using ODBC.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.