Xiphias
06-17-2003, 07:09 PM
Can you place <html> <head> <body> <meta> tags etc. in PHP echos? if you do that, then will they work as proper HTML? ex:
<?
echo "<html>";
?>
<?
echo "<html>";
?>
|
View Full Version : PHP Meta Xiphias 06-17-2003, 07:09 PM Can you place <html> <head> <body> <meta> tags etc. in PHP echos? if you do that, then will they work as proper HTML? ex: <? echo "<html>"; ?> pb&j 06-17-2003, 08:18 PM in theory, yes, that should work. haven't tried it myself yet. the question about it though is why? echoing those tags would be the same as typing them out normally. perhaps you are moving into using "include"s? that wouldn't require the echoing, just different pages of the specific coding. zangerbanger 06-18-2003, 04:03 AM Yep, you can do that :) . *Wow xiphias, I didn't think you still posted here...:lol:* |