|
Posted by J.O. Aho on 04/23/06 02:04
Frankly wrote:
> it is working now.. the tech support chat guy told me that i used the code
> wrong.
> I used html and php code together I need to use only php and not html.
As "mike white" wrote, thats pure nonsense, you get a lot cleaner code to read
if you use both HTML and PHP in you php scripts
--- test1.php: only php ---
<?PHP
echo "<html>\n<head>\n<title>Test1</title>\n</head>\n<body text=\"green\">\n";
$myvar = "Hello World";
echo $myvar;
echo "</body></html>";
?>
--- eof ---
--- test2.php: both html and php ---
<html>
<head>
<title>Test2</title>
</head>
<body text="green">
<?PHP
$myvar = "Hello World";
echo $myvar;
?>
</body>
</html>
--- eof ---
It's not that much code/html, but already here you can see that the test2.php
is a lot easier to read than test1.php. Just keep your HTML code as proper as
possible, even on your test pages.
//Aho
Navigation:
[Reply to this message]
|