Сообщение от sonntagausgang
|
Но у меня запятые заменяются на %2С можно как-нибудь этого избежать.
|
а зачем
<button class="but">click</button>
<script src="jquery-1.8.3.min.js"></script>
<script>
jQuery(function ($) {
$('.but').bind('click', function () {
$.ajax({
type: 'POST',
url: 'some.php',
data: 'my_param=' + [1, 2, 3, 4, 5, 6, 7, 8, 'test'].join(','),
success: function (data) {
$('body').append(data);
}
});
})
});
</script>
some.php
<?php
if (isset($_POST['my_param'])) echo "<br>my_param=".$_POST['my_param'].'<br>'; else echo "<br>no my_param";
?>