I write a selection of ids (e.g. "3,4,31") in a disabled textarea
(works fine so far) and want to submit that via GET.
I don't understand why I keep getting an undefined index error with the following code:
<form action="slider/Jssor/image-gallery.source.php" method="get"><br>
<textarea name="selection" id="result" disabled></textarea>
<input type="submit" value="Jssor Imgage Gallery">
</form>
image-gallery.source.php
throws the undefined index error when calling:
<?php
echo $_GET["selection"];
?>
The link to the new page works fine so I assume it can't be because of the path in the action attribute!? I don't see the Ids transported in the URL (?selection=3,4,31), so what am I doing wrong?