Is it possible to call a php script from an html page?  I have a
TestPage.php that I want to convert to TestPage.html - but still call a php
script from it.
This is how my TestPage.php looks now:
<?php
setcookie("myco okie",time(),36 00,"/");
?>
<html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
<head>
<title>TestPage .php</title>
</head>
<body>
content here
<?php
include 'myscript.php';
?>
The site is hosted on a LAMP server - Apache 1.3.27
Is there any way to make this an html page and still call myscript.php?
							
						
					TestPage.php that I want to convert to TestPage.html - but still call a php
script from it.
This is how my TestPage.php looks now:
<?php
setcookie("myco okie",time(),36 00,"/");
?>
<html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
<head>
<title>TestPage .php</title>
</head>
<body>
content here
<?php
include 'myscript.php';
?>
The site is hosted on a LAMP server - Apache 1.3.27
Is there any way to make this an html page and still call myscript.php?
 
	
Comment