PDA

View Full Version : table's , how ?


chaotic
06-29-2002, 01:15 AM
is this the way =

<table border=1 width=100% cellspacing=1 bgcolor="#cdcdcd">
<tr>

</tr>
</table>

ACJavascript
06-29-2002, 08:34 PM
This really deosn't seem like a cgi question. Its more of a html.

But heres how to make a table.

<table border=0 width="100%" height="200%" bgColor="blue" borderColor="red">
<tr>
<td>
HELLO THERE
</td>
</tr>
<tr>
<td bgColor="red">
HI THERE AGAIN
</td>
</tr>
</table>

-------


<tr> = a column
<td> = a row within that column

I hope this helps a bit:D:D

chaotic
06-30-2002, 12:37 AM
thanks dude ,i did not know weather html would work correctly in cgi :o

chaotic
06-30-2002, 12:57 AM
i added it like you said and got this error :(=

syntax error at cbsboard.cgi line 46, near "<"
(Might be a runaway multi-line >> string starting on line 43)
Search pattern not terminated at cbsboard.cgi line 52.

ACJavascript
06-30-2002, 05:21 AM
Why don't you post your cgi script here, and i'll show you how to embed html on your script. Quite simple actually. :thumbsup: :thumbsup:

chaotic
06-30-2002, 06:21 AM
sorted it thanks anyways ;)