![]() |
Anzeige:
|
|
|||||||
| PHP/MySQL Alles rund um die Programmiersprache PHP sowie MySQL. |
|
![]() |
|
|
LinkBack | Themen-Optionen | Ansicht |
|
|
#1 (Direktlink) |
|
Weiß worum´s geht
![]() Registriert seit: 15.05.2004
Ort: Langenfeld
Beiträge: 161
|
Eine Tabelle für nen kleinen Ersparnisrechner ist nach dem schema
Code:
<TABLE BGCOLOR='white' BORDER='0' CELLSPACING='1' CELLPADDING='0' ALIGN='right' height="176px">
<TR height="22">
<TD BGCOLOR='#ebf1f8' ALIGN='left'><SPAN CLASS='content_body_left'> Verbrauch des Fahrzeuges</SPAN></TD>
<TD BGCOLOR='#ebf1f8' ALIGN='left'><FORM ACTION='' METHOD='post' NAME='form1' ID='form'>
<INPUT NAME='verbrauch' TYPE='text' ID='verbrauch' VALUE='9' SIZE='6' MAX='6'></INPUT>
<SPAN CLASS='content_body_left'> l/100 km</SPAN>
</FORM></TD>
</TR>
|
|
|
|
|
|
|
#2 (Direktlink) |
|
Weiß worum´s geht
![]() Registriert seit: 13.03.2006
Beiträge: 197
|
Ouuu wacke böööser Code... hab ihn ein wenig verbessert...
Code:
<table style="background-color:#ebf1f8; border:0px; text-align:right; height:176px" cellspacing="0" cellpadding="0">
<tr>
<td style="text-align:left;">
<span class="ontent_body_left"> Verbrauch des Fahrzeuges</span>
</td>
<td style="text-align:left;">
<form action="" method="post" name="form1" id="form">
<input name="verbrauch" type="text" id="verbrauch" value="9" size="6" maxlength="6" >
<span class="content_body_left"> l/100 km</span>
</form>
</td>
</tr>
</table>
optional empfehle ich dir mit folgendem doctype zu arbeiten: Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Name deiner Seite</title> </head> <body> </body> </html> |
|
|
|
![]() |
|
| Lesezeichen |
| Themen-Optionen | |
| Ansicht | |
|
|