Posts

Showing posts from November, 2019
Image
How To Submit Form Without Page Refreshing with jQuery In PHP ? 1 Create a form for submit data like below  refreshform.html <!DOCTYPE html> < html > < head > < title > Submit Form Without Refreshing Page </ title > < script src = " http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js " > </ script > < link href = " css/refreshform.css " rel = " stylesheet " > < script src = " js/refreshform.js " > </ script > </ head > < body > < div id = " mainform " > < h2 > Submit Form Without Refreshing Page </ h2 > <!-- Required Div Starts Here --> < form id = " form " name = " form " > < h3 > Fill Your Information! </ h3 > < label > Name: </ label > < input id = " name " placeholder = " Your Name " type = " text " > <...