Wo kommt %22 her?

Status
Nicht offen für weitere Antworten.

Zack

cookies vader
Hallo, soblad dieses Formular
HTML:
<form action=index.php?site=gallery&action=drop&art=bild&bild=Kopie(3)vonBild051.jpg&gallery=1" method="post">
	<input type="submit" name="yes" value="Ja">
             <input type="submit" name="no" value="Nein">
</form>
->PHP Code
PHP:
<a class="error">Das Bild wirklich l&ouml;schen?</a>
<form action=index.php?site=gallery&action=drop&art=bild&bild=<?php echo$_GET['bild'];?>&gallery=<?php echo$_GET['gallery'];?>" method="post">
	<input type="submit" name="yes" value="Ja">
	<input type="submit" name="no" value="Nein">
</form>
abschicke passiert folgedens:
Aus:
HTML:
index.php?site=gallery&action=drop&art=bild&bild=Kopie(3)vonBild051.jpg&gallery=1
wird
HTML:
index.php?site=gallery&action=drop&art=bild&bild=Kopie(3)vonBild051.jpg&gallery=1%22
Woran kann das liegen? Ich schau schon 30 minutne drauf und seh keinen fehler....
 
Hi,

zu Beginn des action-Attributwertes fehlt das doppelte Anführungszeichen als Pendant zum vorhandenen schliessenden Anführungszeichen:

Code:
<form action="index.php?site=gallery&action=drop&art=bild&bild=Kopie(3)vonBild051.jpg&gallery=1" method="post">
mfg Maik
 
Status
Nicht offen für weitere Antworten.

Neue Beiträge

Zurück