Webstatt.org - Community seit 2006 - 2012 (2024?)

validierungsfehler!

user-139
25.04.2007 15:35

o habn problem mit der validierung wo ich garnicht weiterweiss das sind die letzten feghkler die ich nicht wegbekomme,.
Line 30 column 45: character "<" is the first character of a delimiter but occurred as data.

...nctype="multipart/form-data" action="<?php $_SERVER['PHP_SELF']?>" method="po


und

Line 47 column 16: end tag for "select" which is not finished.

</select> </td>

Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.


der code davon sieht so as
(die dropdown geschichte wird automatisch erstellt,.
 <select name="marke">
<?php
asort($automarken);
foreach ($automarken as $key => $value) {
echo "<option value=".$automarken[$key].">$automarken[$key]</option>\n";
}
?>
</select>

OS: Windows XP CPU: AMD Athlon XP 3200+ RAM: 512MB DDR PC3200 (Dual Channel) Mainboard: MSI K7n2 Delta-L HDD: 80GB WD Graka:Radeon 9600 Pro =>Alekeijer Straussbuwe
Avatar user-182
25.04.2007 15:38

Line 30 column 45: character "<" is the first character of a delimiter but occurred as data.

...nctype="multipart/form-data" action="<?php $_SERVER['PHP_SELF']?>" method="po

da parsed der parser wohl was net ^^


und zu 2: zeig mal nen bissl mehr ausgabe..

Seid ihr auch schon wix'r? xD
user-303
25.04.2007 15:39

außerdem fehlt dir da ein 'echo'

user-139
25.04.2007 15:45

habs echo eingesetzt allerding der selbe fehler enke jetzt auch das der parser das wohl nicht parst Fettes Grinsen

und zu dem anderen
      <td colspan="2"><strong>=&gt;Autodaten</strong></td>
</tr>
<tr>
<td width="287">Automarke</td>
<td width="198"> <select name="marke">
<?php
asort($automarken);
foreach ($automarken as $key => $value) {
echo "<option value=".$automarken[$key].">$automarken[$key]</option>\n";
}
?>
</select> </td>
</tr>
<tr>
<td width="287">KFZTyp (Modell)</td>
<td width="198"> <input type="text" size="33" name="typ" class="feld" />
</td>
</tr>
<tr>

OS: Windows XP CPU: AMD Athlon XP 3200+ RAM: 512MB DDR PC3200 (Dual Channel) Mainboard: MSI K7n2 Delta-L HDD: 80GB WD Graka:Radeon 9600 Pro =>Alekeijer Straussbuwe
Avatar user-118
25.04.2007 15:56

Ich würds so machen:

      <td colspan="2"><strong>=&gt;Autodaten</strong></td>
</tr>
<tr>
<td width="287">Automarke</td>
<td width="198"> <select name="marke">
<?php
asort($automarken);
foreach ($automarken as $key => $value) {
echo "<option value=\"".$automarken[$key]."\">".$automarken[$key]."</option>\n";
}
?>
</select> </td>
</tr>
<tr>
<td width="287">KFZTyp (Modell)</td>
<td width="198"> <input type="text" size="33" name="typ" class="feld" />
</td>
</tr>
<tr>

Ich brauche keine Signatur
user-139
25.04.2007 16:08

mh habs mal abgeändert der fehler bleibt aber bestehen , .. obwohl ichs nicht nachvollzeiehen kann,.

OS: Windows XP CPU: AMD Athlon XP 3200+ RAM: 512MB DDR PC3200 (Dual Channel) Mainboard: MSI K7n2 Delta-L HDD: 80GB WD Graka:Radeon 9600 Pro =>Alekeijer Straussbuwe
Avatar user-118
25.04.2007 16:11

Kann man das ganze mal online ansehen ?

Ich brauche keine Signatur
user-139
25.04.2007 16:21

jo ,.
http://www.bonze.alekeijer-kerb.de/admin/admin.php?page=add
der code ist eins von den drop-downs bzw ist bei allen gleuich,.
aufem lokalserver hab ich das problem das wenn ich über die ip drauf zugreife , das eintrage formular nur halb angezeigt wird, deshalb wollte ich es validieren , wenn ich übern localhost geehn funzt es einwandfre, online aufem webspace auch ,.

OS: Windows XP CPU: AMD Athlon XP 3200+ RAM: 512MB DDR PC3200 (Dual Channel) Mainboard: MSI K7n2 Delta-L HDD: 80GB WD Graka:Radeon 9600 Pro =>Alekeijer Straussbuwe
Avatar user-236
26.04.2007 16:51

übrigens ist dein doctype irgendwie doppelt drin. und reicht dafür nicht auch nur

<option> ... anstatt <option> </option> wir hatten hier schon einmal ein ähnliches problem. vermutlich hat das aber nichts mit der fehlermeldung an sich zu tun lächeln aber mit einer sauberen auszeichnung

signature in progress
user-139
26.04.2007 18:08

jo ich weiss das da fehler drin sind im quellcode, .. mitm doctypoe ist mir nochnicht aufgefallen,.

OS: Windows XP CPU: AMD Athlon XP 3200+ RAM: 512MB DDR PC3200 (Dual Channel) Mainboard: MSI K7n2 Delta-L HDD: 80GB WD Graka:Radeon 9600 Pro =>Alekeijer Straussbuwe