国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

How to parse data submitted by jquery serialize in php
天蓬老師
天蓬老師 2017-05-16 13:01:19
0
3
469

$data ="realname=lemon&numid=123"
How to convert to
$data= array('realname'=>'lemon'
,numid=>'123',)< /p>

天蓬老師
天蓬老師

歡迎選擇我的課程,讓我們一起見證您的進(jìn)步~~

reply all(3)
黃舟

Use ajax to post data to the background directly in the form of array
$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function( msg){

 alert( "Data Saved: " + msg );

}
});

巴扎黑

No need to transfer, just receive it directly

過去多啦不再A夢

No need to convert, just print it outprint_r($_POST). What you see is the data in this format

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template