scootstah Posted February 11, 2012 Share Posted February 11, 2012 No, you'd need to get the values from the form using Javascript. It would look something like var short, location, type; short = $('input[name="short"]').val(); location = $('input[name="location"]').val(); type = $('input[name="type"]').val(); $.post("editcalendar.php", { short : short, location : location, type : type }, function(data) { alert("Your event has been created, Close this window."); } ); Now do that for all of your form elements. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.