PHPSESSID bij XHTML 1.0 Strict
Line 33, Column 115: document type does not allow element "input" here; missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del" start-tag .
…="53d00cb1a3c3cc713c44a4bbd19cd306" />
✉
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
PHP maakt nl. automatisch een hidden veld met PHPSESSID aan, maar die moet in een divje staan...
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<form action="verwerking.php">
<fieldset>
<legend>Lid toevoegen</legend>
<label for="inp1">Naam:</label>
<input type="text" name="naam" id="inp1" /><br />
<label for="inp2">Continent:</label>
<input type="text" name="cont" id="inp2" /><br />
<input type="submit" value="Voeg toe" name="submit" />
</fieldset>
</form>
<fieldset>
<legend>Lid toevoegen</legend>
<label for="inp1">Naam:</label>
<input type="text" name="naam" id="inp1" /><br />
<label for="inp2">Continent:</label>
<input type="text" name="cont" id="inp2" /><br />
<input type="submit" value="Voeg toe" name="submit" />
</fieldset>
</form>
EDIT: Sorry voor de bump!!!
Gewijzigd op 01/01/1970 01:00:00 door Sven
Edit: Link gevonden: http://www.gigadesign.be/2006/07/php-hulp-nodig/ maar er staat dat er weinig aan te doen is.. :(
Toch maar Transitional dus
Nja, bedankt hè.. ;)
Gewijzigd op 01/01/1970 01:00:00 door Sven
Maar goed er staat dus dat het je server instellingen zijn. Maar lees eens verder bij de reacties. Kijk nummer 1 is kuch een hele nuttige van mij natuurlijk maar even verder op staan ook wat dingen gegeven die je kan doen als je hoster niet mee zit.
Edit:
Ik zie overigens dat je al een fieldset gebruikt. Dan moet de melding ergens anders vandaan komen.
Gewijzigd op 01/01/1970 01:00:00 door Jan Koehoorn
ik weet zo niet voor welke regel maar ik kijk even
Edit:
het moet niet een ; zijn maar de instellingen moeten zo staan:
het moet niet een ; zijn maar de instellingen moeten zo staan:
Quote:
session.use_only_cookies = 1
session.use_trans_sid = 0
session.use_trans_sid = 0
Gewijzigd op 01/01/1970 01:00:00 door Gerben G