spaties in array
Als ik bijvoorbeeld een array heb met meerdere waardes zoals bijvoorbeeld: "maak uw keuze", "Warner Bros", "Universal" etc.
en ik ga controleren of iemand wel een maatschappij geselecteerd heeft ( de uitkomst is bijvoorbeeld: Warner Bros, dan geeft die alleen maar 'Warner' aan en geen 'Warner Bros', ik heb dit ook al geprobeerd: Warner Bros, dan wordt het wel goed weergegeven op de volgende pagina, maar als ik dan naar de vorige pagina heen ga omdat er iets anders niet goed gepost is, dan is het selectielijstje niet meer geselecteerd op de geposte waarde. Terwijl dit met een woord zonder spaties wel goed gaat.
Wie snapt mij nog? En wie weet hier een oplossing voor.
Alvast bedankt,
ARnold
Gewijzigd op 17/03/2006 20:42:00 door Willem Jan Z
<select name="maatschappij">
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<?php
$maatschappij= array ("Maak uw keuze", "Paramount pictures", "Universal Pictures", "Sony Pictures", "Warner Bros", "Fox Video", "A Film", "DFW", "Bridge", "Indies", "Buena Vista", "Videofilme", "Filmfreak", "RCV", "Lucasfilm", "Miramax", "Columbia Pictures", "Dreamworks", "Lime-lights", "Pixar", "Homescreen", "Just entertainment", "Focus film fact", "H.O.M. Vision", "Paradiso H.E.", "Total film H.E.", "VTC Media", "Onbekend" );
foreach($maatschappij as $maatschappij)
{
echo "<option value=".$maatschappij.""; if ($_POST['maatschappij'] == $maatschappij) { echo " selected"; } echo ">".$maatschappij."</option>";
}
?>
$maatschappij= array ("Maak uw keuze", "Paramount pictures", "Universal Pictures", "Sony Pictures", "Warner Bros", "Fox Video", "A Film", "DFW", "Bridge", "Indies", "Buena Vista", "Videofilme", "Filmfreak", "RCV", "Lucasfilm", "Miramax", "Columbia Pictures", "Dreamworks", "Lime-lights", "Pixar", "Homescreen", "Just entertainment", "Focus film fact", "H.O.M. Vision", "Paradiso H.E.", "Total film H.E.", "VTC Media", "Onbekend" );
foreach($maatschappij as $maatschappij)
{
echo "<option value=".$maatschappij.""; if ($_POST['maatschappij'] == $maatschappij) { echo " selected"; } echo ">".$maatschappij."</option>";
}
?>
</select>