views:

28

answers:

2

I will have a web-application which will use a few complex forms. One form will have examples field on the top and field for user on the bottom. There will be approximately 10 examples. It will be great if i can change text and images without reloading full HTML page.

Form will be based on HTML. Php will do all logic processes. I haven't find information about HTML button - can i use it for this problem or i need just several submit buttons in the form?

How can i implement this using HTML and PHP?

Thanks in advance.

+1  A: 

You can't do this with PHP alone, because it runs server-side and would force you to reload the page.

This is usually a job for Ajax, which is a technique to make JavaScript-based calls to URLs without reloading the current page.

The jQuery framework has one of the most popular and straightforward Ajax implementations.

Unicron
A: 

jquery complete video tutorial for begineer... check this link http://net.tutsplus.com/articles/web-roundups/jquery-for-absolute-beginners-video-series/ . Its a nice tutorial. give you a good understanding in jquery technology....

Jaison Justus
ok thanks, will try
dsplatonov