|
OT: Problem with a poll [message #82431] |
Thu, 22 April 2004 12:37 |
flyingfox
Messages: 1612 Registered: February 2003 Location: scotland, uk
Karma: 0
|
General (1 Star) |
|
|
I don't know php, but the ?> and <? don't seem like proper html tags.
Also, in the code, you don't seem to have added in a "color=" or whatever the code is to color a background on a page. If you PM crimson to this thread, I'm sure she'll know what to do.
|
|
|
|
OT: Problem with a poll [message #82438] |
Thu, 22 April 2004 12:45 |
Matt2405
Messages: 77 Registered: October 2003 Location: UK
Karma: 0
|
Recruit |
|
|
If you ask me isnt <?php and ?> the standered tags.
I dont know much about PHP will I am going to use it in the future.
EDIT: If I am mistaken don't you use the "echo" command when using HTML code in PHP code?
If so it would be this:
<?php
echo"<html>"
. "head>"
. "link rel=\"stylesheet\" href=\"css.css\" type=\"text/css\">"
. "/head>"
. "/html> "
."";
?>
Sorry if I am wrong.
|
|
|
|
|
|
Re: OT: Problem with a poll [message #82576] |
Thu, 22 April 2004 21:40 |
|
Crimson
Messages: 7429 Registered: February 2003 Location: Phoenix, AZ
Karma: 0
|
General (5 Stars) ADMINISTRATOR |
|
|
?>
<html>
<head>
<link rel="stylesheet" href="css.css" type="text/css">
</head>
<body>
<? more php stuff ?>
</body>
</html>
Your HTML document isn't constructed properly.
I'm the bawss.
|
|
|
|
|