I have recently i have found out a fantastic function in jquery called serialize, which allow form values to show without submitting it..
http://api.jquery.com/serialize/
I wanted to integrate it with php and phpmyadmin, but i couldn't understand the
- Code: Select all
var str = $("form").serialize();
$("#results").text(str);
How could I get the value and set it into variables in php??.. using php serialize function?
Please help me I'm lost, as I'm fresh to jquery and javascript


