I have a php page with some functions for receiving POST data, with page refresh, without AJAX.
Now I have a form with hidden fields that contain my dynamic data, which I submit with JS, for example: document.my_form.submit();
Can I send data without using a form?
Basically, I want to send an array of URLs from a list with thumbnails, so my function iterates over the list and masses them into arrays.
Ffish source
share