|
-
Aug 28th, 2000, 08:01 PM
#1
Thread Starter
Frenzied Member
you know how in html you write:
<html>
html code
</html>
what do I do in PHP
like
<php>
</php>
that doesn't work
thanks in advance
dimava
NXSupport - Your one-stop source for computer help
-
Aug 29th, 2000, 02:54 PM
#2
Monday Morning Lunatic
You need to use:
<?php ?> tags:
Code:
<html>
<body>
<?php
echo "Here is PHP!";
?>
</body>
</html>
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Aug 29th, 2000, 02:55 PM
#3
Thread Starter
Frenzied Member
NXSupport - Your one-stop source for computer help
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|