your variable 'lol' is not a valid type to be POSTed. It should either be a serialized string: var lol = "myVar=hello&yourVar=world";
or JSON: var lol = {myVar:'hello', yourVar:'world'}; On Feb 26, 6:32 am, bheesham <bheesham...@gmail.com> wrote: > Here is my code:http://pastebin.com/m2c7d97bd > > Now you see i want to post "lol". When you load the page, it will POST > to this form:http://pastebin.com/m4ceeeef4 > > Now my problem is that it does not POST "lol"... it doesn't even post > anything. Is there a way to do this? I've been searching for a while > now and still no help. > > Thank you.