Re: [PHP] PHP Version: 5.2.5.

2011-10-17 Thread Ashley Sheridan
On Mon, 2011-10-17 at 17:43 +0100, Joseph Adenuga wrote: > > Hello Ashley, > > Many thanks for your email. Yes, I'm calling the script from my > Firefox browser. I've tried all I can to find other ways to open the > file but, with no luck. Please I'm thanking you in anticipation. > > I look for

[PHP] Convert Hours to Decimal

2011-10-17 Thread Don Wieland
Hey Tim, I got a select string: select timediff(cast(out_1 as time), cast(in_1 as time)) tHours FROM lm_tc_trans WHERE tc_trans_id = '42' result = 08:45:00 How do i convert that to a FLOAT (5,2) = 8.75 or result = 08:15:00 How do i convert that to a FLOAT (5,2) = 8.25 Don Wieland --

Re: [PHP] Seeking strategy/algorithm for maintaining order of records

2011-10-17 Thread Tommy Pham
On Sun, Oct 16, 2011 at 2:32 PM, Stephen wrote: > On 11-10-16 04:10 PM, Jim Giner wrote: > >> Stephen: >> >> What you describe is a multistep problem. There are many ways to show >> pictures (images) in any order you want. >> * >> >> So far, the OP has only asked how to keep his "categories"

Re: [PHP] FW: parse error

2011-10-17 Thread Stuart Dallas
PLEASE INCLUDE THE LIST WHEN REPLYING! On 17 Oct 2011, at 18:21, David Savage wrote: > No... I log into a linux box, and use the vi editor (actually I use 'view', > which is vi but without the color highlighting which is somewhat hard to see > on some colors, such as blue on a black screen).

[PHP] Re: PHP Version: 5.2.5.

2011-10-17 Thread Jim Giner
what did you name your file? If it didn't have a .php extension, it won't work. "Joseph Adenuga" wrote in message news:1318859708.50026.yahoomailclas...@web29517.mail.ird.yahoo.com... Operating System: Window XP PHP Version: 5.2.5. with Apache 2.2.8 My Firefox browser returns (Output) the s

Re: [PHP] PHP Version: 5.2.5.

2011-10-17 Thread Ashley Sheridan
Joseph Adenuga wrote: > > >Operating System: Window XP > >PHP Version: 5.2.5. with Apache 2.2.8 > >My Firefox browser returns (Output) the same php script code I inserted >in Notepad:   >    echo "Hello >Web!"; > >?> > >  > >Please, what am I doing wrong? How are you calling the script? If you

RE: [PHP] PHP Version: 5.2.5.

2011-10-17 Thread Dajka Tamás
Hi, PHP parser is not enabled ( module not enabled or not associated with .php/.html/.htm files! ) Cheers, Tamas -Original Message- From: Joseph Adenuga [mailto:jadenu...@yahoo.com] Sent: Monday, October 17, 2011 3:55 PM To: php-general@lists.php.net Cc: jadenu...@yahoo.com Sub

[PHP] PHP Version: 5.2.5.

2011-10-17 Thread Joseph Adenuga
Operating System: Window XP PHP Version: 5.2.5. with Apache 2.2.8 My Firefox browser returns (Output) the same php script code I inserted in Notepad:  Hello Web!"; ?>   Please, what am I doing wrong?

RE: [PHP] Seeking strategy/algorithm for maintaining order of records

2011-10-17 Thread Arno Kuhl
From: Stephen [mailto:stephe...@rogers.com] Sent: 16 October 2011 11:33 PM To: php-general@lists.php.net Subject: Re: [PHP] Seeking strategy/algorithm for maintaining order of records Displaying in an order is easy when you have a field called "order". SELECT descriptions FROM categories ORDER b