[jQuery] problem with ajax form submission (with form plugin)
Hi
I'm trying to post a form with Jquery ande the form plugin. This is my test
page:
http://www.leihitu.nl/xperiments/form/test.html
It tries to send it to send.php where I have this php code:
<?php
print "<h1>\$_REQUEST</h1>";
print "<pre>";
print_r($_REQUEST);
print "</pre>";
print "<h1>\$_POST</h1>";
print "<hr>";
print "<pre>";
print_r($_POST);
print "</pre>";
?>
Every time I try it, I always get something like:
Array
(
[0] => [object Object]
[1] => [object Object]
[2] => [object Object]
[3] => [object Object]
[4] => [object Object]
[5] => [object Object]
[6] => [object Object]
[7] => [object Object]
[8] => [object Object]
[9] => [object Object]
[10] => [object Object]
)
what am i doing wrong?
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/