Page 1 of 1

Form Refresh

Posted: Tue Aug 07, 2007 5:34 am
by red
Hi All,

I have a problem in refreshing a Form based on SetTime()
In the Page i have many Form ,Form as to be Refresh

How to refresh a Form so that , no chages should be made to other forms

with regards,
red

Posted: Tue Aug 07, 2007 7:32 am
by Jenk
What an utterly ambiguous thread :?

Posted: Tue Aug 07, 2007 11:47 am
by Bill H
Ambiguous is one word for it, I can think of others.

ambiguous thread

Posted: Wed Aug 08, 2007 3:04 am
by red
Jenk wrote:What an utterly ambiguous thread :?

What an utterly ambiguous thread

Posted: Wed Aug 08, 2007 12:08 pm
by RobertGonzalez
Can you explain what you are looking to do?

Form Refreshing

Posted: Thu Aug 09, 2007 4:15 am
by red
Hi,

I am coding in html and PHP.
In Html page there is a form containing Text Area and a input text ,where input data into database through input text.

In same form I am retriving Data from database into text area, where this text Area should be refreshing based on set Time.Because any other Login User can simultaneously enter the Data on other side.

I have only idea in refreshing Page..I am Struggling to refresh a Text area. :?: Please anyone can Solve my Problem.How Exactly i can do this.

Thanks in Advance.
Regards Red. :idea:

Posted: Thu Aug 09, 2007 5:01 am
by s.dot
An ajax function with a setTimeout() javascript function (to poll the server at regular intervals) should update the textarea with the current content.

EDIT| I wouldn't consider this the best solution. Perhaps you could use some sort of blocking or locking function to limit this form to 1 person editing it at a time. (is it an administrative type form?)

Posted: Fri Aug 10, 2007 4:04 am
by red
scottayy wrote:An ajax function with a setTimeout() javascript function (to poll the server at regular intervals) should update the textarea with the current content.

EDIT| I wouldn't consider this the best solution. Perhaps you could use some sort of blocking or locking function to limit this form to 1 person editing it at a time. (is it an administrative type form?)

Its Like a chatting OnLine.
I am getting data on Submit ,But I want to refresh when enduser as been entered Data

:arrow:

Posted: Fri Aug 10, 2007 10:20 am
by RobertGonzalez
Maybe you can download a chat script and see how it does it.