0
Php
How to create a php website without a back end database ?
2 Réponses
+ 4
You don’t need to use a database to make a PHP website.
+ 2
You don’t ‘need’ a database.
<?php
echo "<html><head></head><body>I love PHP!</body></html>";
?>
That would print out a webpage.
Php would normally be doing some kind of work on the server before sending out page content, but it doesn’t have to.