Can I make a PHP website without MySQLServer?

chronoel

New member
hi Bluebird, absolutely. you don't need a mysql server to create a php website. only that it would force you to think of other places where you can store the data that your website uses. other places where you can store data are text files or create a custom file where you define the type and structure of data you store into it.

i've seen you said dynamic so that means you need data in your website. on the other hand, if your site just includes links and text then you can do away with php. you can just hardlink static webpages in your website.

hope this helps. thanks.
 
I would like to make a dynamic website. It only contains pictures and text and links. It that required My SQL Server? Help me please.
 
No you don't need to have mysql server setup for this purpose. You can store your pictures into a folder and also you can put text directly into php code. The advantage of mysql with PHP is that if you need to use search facilities on your website it is quicker and also it makes your php code smaller in size.
 
Yes Sir, why not...?? Create ur website in PHP, MYSQL is just for database purpose. So just forget about database and create ur own wonderful website in PHP.. ;)
 
Back
Top