1
Is there any method of creating an array with AJAX to send the value of the selected input to another page where PHP will receive? there may be several input’s depending on the page, but page that will receive the values is unique for all
<div class="lista">
<input type="checkbox" value="msc1_URL" checked>Musica 1</br>
<input type="checkbox" value="msc2_URL">Musica 2</br>
<input type="checkbox" value="msc3_URL">Musica 3</br>
<!-- varias musicas aqui -->
</div>
It would have how to do without the need for a form?
– João Victor