Nun ich habe diesen link.
<a href="thumbindex.php?command='.urlencode($row['command']).'
?thumb='.urlencode($row['command']).'_prev.jpg"
nun ist es aber so das wenn auf der anderen Seite mit _GET das abfrage das hier in der Variable steht
Array
(
[command] => test?thumb=test_prev.jpg
)
Aber ich würde gerne das stehen haben
Array
(
[command] => test
[thumb] => test_prev.jpg
)
Wie schaff ich also bei dem link das zu trennen
<a href="thumbindex.php?command='.urlencode($row['command']).'
?thumb='.urlencode($row['command']).'_prev.jpg"
nun ist es aber so das wenn auf der anderen Seite mit _GET das abfrage das hier in der Variable steht
Array
(
[command] => test?thumb=test_prev.jpg
)
Aber ich würde gerne das stehen haben
Array
(
[command] => test
[thumb] => test_prev.jpg
)
Wie schaff ich also bei dem link das zu trennen
Kommentar