Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

table design

Status
Not open for further replies.

lardum

IS-IT--Management
Apr 26, 2000
462
SE
Why is this table splitting cells into 2 rows:

print(&quot;<table border=1 cellpadding=1 cellspacing=0 bordercolor=000000>&quot;);

print(&quot;<tr><td widtd=200><b>Date:</B></td><td widtd=50><B>Time:</B></td><td widtd=40><B>Name:</B></td><td widtd=30><B>E-mail:</B></td><td widtd=100><B>Comment:</b></td>&quot;);

print(&quot;<tr><td>&quot;);
print($rad[&quot;RegDate&quot;]);
print(&quot;</td><td>&quot;);
print($rad[&quot;RegTime&quot;]);
print(&quot;</td><td>&quot;);
print($rad[&quot;name&quot;]);
print(&quot;</td><td><a href=\&quot;mailto:&quot;);
print($rad[&quot;email&quot;]);
print(&quot;\&quot;>&quot;);
print($rad[&quot;email&quot;]);
print(&quot;</a></td><td>&quot;);
print($rad[&quot;comment&quot;]);
print(&quot;</td></tr>&quot;);

Result would be:

Date: Time: Name: E-mail: Comment:
2004- 10:40 Test test testing fake
01-10
2004- 20:29 test2 test@hotmail.com what
01-07

I've been experimenting with td width command but not sucessful. I wanted to set the width throgh percentage but it's not working.

Any ideas?
 
This is an HTML question...

First of all, for every
Code:
<tr>
, you need a
Code:
</tr>
.

Secondly, if you do not want toext to wrap, tell the browser not to wrap the text with
Code:
<td nowrap>
. You are not looking at an extra row: you are looking at a wrapped line in a single row.

Your best bet is to use a WYSIWYG HTML editor to create a dummy table. Then use the raw HTML as a guide in your PHP coding.

The format for your variables seems funky.

- - picklefish - -
Why is everyone in this forum responding to me as picklefish?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top