is that possible to design a static web page through php? http://www.webdeveloper.com
Bishvabis;1253383 wrote:is that possible to design a static web page through php? http://www.webdeveloper.com
Yes it is possible. If it's going to be a static page without any dynamic elements why do you need it to be in PHP ?
static_page.php:
<html> <head> <title>Static PHP Page</title> </head> <body> <p>This is a static PHP page.</p> </body> </html>