php-general Digest 17 Oct 2011 13:55:20 -0000 Issue 7524

2011-10-17 Thread php-general-digest-help
php-general Digest 17 Oct 2011 13:55:20 - Issue 7524 Topics (messages 315328 through 315331): Re: Seeking strategy/algorithm for maintaining order of records 315328 by: Ashley Sheridan 315330 by: Arno Kuhl Re: Image Rotation Script 315329 by: Curtis Maurand PHP

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 by

[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:  ?php     echo h1Hello Web!/h1; ?   Please, what am I doing wrong?

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

Re: [PHP] PHP Version: 5.2.5.

2011-10-17 Thread Ashley Sheridan
Joseph Adenuga jadenu...@yahoo.com 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:  ?php     echo h1Hello Web!/h1; ?   Please, what am I doing wrong? How are you calling the

[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 jadenu...@yahoo.com 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

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). As

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 stephe...@rogers.com 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

[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 --