Re: [PHP] real time output from log file?

2006-04-17 Thread Richard Lynch
On Mon, April 17, 2006 11:45 am, Jason Gerfen wrote: Anyone use php to tail a log file for patterns and perhaps updating a iframe or something similar? If so do you have a link to some resources on it? No, but I don't see how you could make this much more complicated than: html headmeta

Re: [PHP] real time output from log file?

2006-04-17 Thread Jochem Maas
Richard Lynch wrote: On Mon, April 17, 2006 11:45 am, Jason Gerfen wrote: Anyone use php to tail a log file for patterns and perhaps updating a iframe or something similar? If so do you have a link to some resources on it? No, but I don't see how you could make this much more complicated

Re: [PHP] real time output from log file?

2006-04-17 Thread Richard Lynch
On Mon, April 17, 2006 6:19 pm, Jochem Maas wrote: But they had guys at an old job that did this, after I turned OFF display_output on their production server... [shudder] I guess Richard's had another long day ... display_output? maybe display_errors? or was the stuff those guys produced so

Re: [PHP] real time output from log file?

2006-04-17 Thread Jochem Maas
Richard Lynch wrote: On Mon, April 17, 2006 6:19 pm, Jochem Maas wrote: But they had guys at an old job that did this, after I turned OFF display_output on their production server... [shudder] I guess Richard's had another long day ... display_output? maybe display_errors? or was the stuff

RE: [PHP] Real-Time Form Updating

2005-11-18 Thread Jay Blanchard
[snip] That being siad, I have a field for total number of users that I would like to calculate the total of about five variables in real-time, before the submit button is activated. Is this possible? [/snip] Yes. Google for JavaScript -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Real-Time Form Updating

2005-11-18 Thread Brent Baisley
Absolutely, but you wouldn't really be using PHP to do. Javascript would be required to handle the real time display update. Javascript could also to the calculations. If you want to query the server for prices and have PHP do the calculations and spit back totals, you'll need to use AJAX.

Re: [PHP] Real-Time Form Updating

2005-11-18 Thread David Grant
I might have the wrong end of the stick, but would it not be easier to calculate these variables in the form handling script? Cheers, David Grant Chase wrote: I am trying to build an order form for our clients to use to order hardware and software, or atleast get a price quote for such. The

Re: [PHP] real time output

2002-12-17 Thread Jason Wong
On Tuesday 17 December 2002 22:29, Art Chevalier wrote: Hello, I want to start a native process and capture the output while it is being generated and display it to the screen. I dont want to output to be displayed on the screen all at once after the process completes. As the process returns

Re: [PHP] real time output

2002-12-17 Thread Chevalier, Arthur
What about setting implicit_flush = on ? Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... On Tuesday 17 December 2002 22:29, Art Chevalier wrote: Hello, I want to start a native process and capture the output while it is being generated and display it to the

Re: [PHP] real time php

2002-06-24 Thread Erik Price
On Monday, June 24, 2002, at 10:04 AM, adi wrote: How to make a function for refreshing values in php pages, without pressing Refresh button. What must i read? There's a meta tag that will auto-refresh the page after a specified number of seconds. That will work. But you can't

Re: [PHP] real time php

2002-06-24 Thread 1LT John W. Holmes
I have a program in php, with access at mysql database. The problem is, my users have to access Refresh button anytime when they want to see real time values in database. How to make a function for refreshing values in php pages, without pressing Refresh button. What must i read? PHP can't

Re: [PHP] real time php

2002-06-24 Thread Kevin Stone
Look into javascript location method or meta tags to performed timed refreshes of the browser window. Do a search on Google. You will find dozens of references to both techniques. -Kevin - Original Message - From: adi [EMAIL PROTECTED] To: php-general [EMAIL PROTECTED] Sent: Monday,

RE: [PHP] Real Time

2001-05-03 Thread Jack Dempsey
PHP is server side. If you want to continously display the real time on your page, accurate to the second, you'd have to refresh every second...if you're not concerned about to the second accuracy, you could just use the date function with teh appropriate parameters to give you the current time