Form Refresh

XML, Perl, Python, and other languages can be discussed here, even if it isn't PHP (We might forgive you).

Moderator: General Moderators

Post Reply
red
Forum Newbie
Posts: 18
Joined: Fri Apr 06, 2007 1:27 am

Form Refresh

Post 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
User avatar
Jenk
DevNet Master
Posts: 3587
Joined: Mon Sep 19, 2005 6:24 am
Location: London

Post by Jenk »

What an utterly ambiguous thread :?
User avatar
Bill H
DevNet Resident
Posts: 1136
Joined: Sat Jun 01, 2002 10:16 am
Location: San Diego CA
Contact:

Post by Bill H »

Ambiguous is one word for it, I can think of others.
red
Forum Newbie
Posts: 18
Joined: Fri Apr 06, 2007 1:27 am

ambiguous thread

Post by red »

Jenk wrote:What an utterly ambiguous thread :?

What an utterly ambiguous thread
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Can you explain what you are looking to do?
red
Forum Newbie
Posts: 18
Joined: Fri Apr 06, 2007 1:27 am

Form Refreshing

Post 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:
User avatar
s.dot
Tranquility In Moderation
Posts: 5001
Joined: Sun Feb 06, 2005 7:18 pm
Location: Indiana

Post 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?)
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
red
Forum Newbie
Posts: 18
Joined: Fri Apr 06, 2007 1:27 am

Post 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:
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Maybe you can download a chat script and see how it does it.
Post Reply