Hi ppl,
I need some help in PHP.
I am writing a script in php where i need to display an HTML formatted webpage.
The html page name is view.php and is like -
#!/usr/local/bin/php
<?php
session_start();
?>
<html>
<head>
<title>
</title>
</head>
<body ....>
<form action = ....>
</form>
</body>
</html>
So if i want a php script to display output as proper html which has code like shown above how do i do it.
Thanks,
JG