Using jquery mobile+phonegap, trying to POST to a Slim application, I have this code:
$( document ).on( \"vclick\", \"#test_form\", function() { $.aj
Have you tried:
$app->post('/', function() use ($app) { // ... $req = $app->request(); echo json_encode($req->post('namec')); //... }
Also this page should help