How to display the form results on my website.?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
goodmailf
Forum Newbie
Posts: 1
Joined: Wed Apr 23, 2014 1:22 am

How to display the form results on my website.?

Post by goodmailf »

Hi

Here is the form. Where we can search for user details by entering 10 digit number. Example 8978057890

http://goo.gl/7g1RO6

I want to post the data from my website without leaving the page and display the result in my page.

Please help me. How can we do that.
User avatar
Celauran
Moderator
Posts: 6427
Joined: Tue Nov 09, 2010 2:39 pm
Location: Montreal, Canada

Re: How to display the form results on my website.?

Post by Celauran »

AJAX. Attach a listener to the form, prevent default action on submit, send your form data asynchronously, and update the page.
Post Reply