Stichworte in Auswahlmenu setzen Stichworte in Auswahlmenu setzen
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Stichworte in Auswahlmenu setzen

Started by miner21, February 21, 2007, 10:31:09 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

miner21

Hallo miner,
ich habe in der include/keyword.inc.php versucht die Stichworte in ein Auswahlmenu zu stellen.
prinzipell funktioniert mein script –nur leider bekomme ich die Sonderzeichen nicht aus dem urlstring:

thumbnails.php?album%3Dsearch%26search=romanik
statt:
thumbnails.php?album=search&search=romanik

Versuche mit "urldecode" bzw "urlencode" blieben leider auch erfolglos




echo <<< EOT

<form name=form action=thumbnails.php? method=get>
<select name=album=search&search onChange=document.form.submit()>

EOT;

   for ($i = 0; $i < $count; $i++) {
   
   echo "<option value=$keywords_array[$i]>$keywords_array[$i]</option><br>";

}     
   echo "</select></form>";


???