Re: [PHP] Re: Directory Listing

2009-08-26 Thread Ashley Sheridan
On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more and now I have the following code: ? error_reporting(E_ALL); ini_set('display_errors', true); function getDirectory($path = '.', $ignore = '') { $dirTree = array (); $dirTreeTemp = array ();

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Tom Chubb
2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more and now I have the following code: ? error_reporting(E_ALL); ini_set('display_errors', true); function getDirectory($path = '.', $ignore = '') {    

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Ashley Sheridan
On Wed, 2009-08-26 at 09:50 +0100, Tom Chubb wrote: 2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more and now I have the following code: ? error_reporting(E_ALL); ini_set('display_errors', true);

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Tom Chubb
2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Wed, 2009-08-26 at 09:50 +0100, Tom Chubb wrote: 2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more and now I have the following code: ?

Re: [PHP] Re: Directory Listing

2009-08-26 Thread hack988 hack988
have a tab inserted in the middle of the path ??? What it mean,I can't find any diffrent between last one with other rows. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Ashley Sheridan
On Wed, 2009-08-26 at 18:21 +0800, hack988 hack988 wrote: have a tab inserted in the middle of the path ??? What it mean,I can't find any diffrent between last one with other rows. It might be because of the way that the mailing list software converts the content? I tend to always make CSV

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Tom Chubb
2009/8/26 hack988 hack988 hack...@dev.htwap.com: have a tab inserted in the middle of the path ??? What it mean,I can't find any diffrent between last one with other rows. To clarify - this is what I was getting: /tab here9216_100_REV_V1.0_bound.dwgtab here05/08/2009 /Tender Docs/tab hereBAA

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Tom Chubb
2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Wed, 2009-08-26 at 18:21 +0800, hack988 hack988 wrote: have a tab inserted in the middle of the path ??? What it mean,I can't find any diffrent between last one with other rows. It might be because of the way that the mailing list

Re: [PHP] Re: Directory Listing

2009-08-26 Thread hack988 hack988
your means Health and Safety Questionnaireis directory? so you want it display like this full dir path tab filenametabdate -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Tom Chubb
2009/8/26 hack988 hack988 hack...@dev.htwap.com: your means Health and Safety Questionnaireis directory? so you want it display like this full dir path tab filenametabdate Yes. I did try using if(is_dir($file)) { insert tab } but couldn't get it to work. Also tried counting the length of the

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Eddie Drapkin
On Wed, Aug 26, 2009 at 9:45 AM, hack988 hack988hack...@dev.htwap.com wrote: I'm write a php file for you = define('Line_End', (PHP_OS == 'WINNT')?\r\n:\n); clearstatcache(); $mylist=array(); listdir(F:\\Programming\\Web\\php,$mylist); function

Re: [PHP] Re: Directory Listing

2009-08-26 Thread hack988 hack988
some code copy from my old codes for truncatedir function,it for backend compatibility. see this PHP_EOL (string) Available since PHP 4.3.10 and PHP 5.0.2 http://cn.php.net/manual/en/reserved.constants.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Directory Listing

2009-08-26 Thread hack988 hack988
I'm write a php file for you = define('Line_End', (PHP_OS == 'WINNT')?\r\n:\n); clearstatcache(); $mylist=array(); listdir(F:\\Programming\\Web\\php,$mylist); function listdir($dir,$list){ if ($handle = opendir( $dir )){ while ( false !== ( $item =

Re: [PHP] Re: Directory Listing

2009-08-26 Thread Steve
Ashley Sheridan wrote: On Wed, 2009-08-26 at 09:50 +0100, Tom Chubb wrote: 2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more and now I have the following code: ? error_reporting(E_ALL);

Re: [PHP] Re: Directory Listing

2009-08-26 Thread hack988 hack988
use realpath is better that i think 2009/8/26 Steve ad...@ultramegatech.com: Ashley Sheridan wrote: On Wed, 2009-08-26 at 09:50 +0100, Tom Chubb wrote: 2009/8/26 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 17:08 +0100, Tom Chubb wrote: I've been playing about more

[PHP] Re: Directory Listing

2009-08-25 Thread Ralph Deffke
I would say foreach( $dirTree as $key = $value ){ echo $key .br; foreach( $value as $v){ echo $v .br; } } something like that ralph_def...@yahoo.de Tom Chubb tomch...@gmail.com wrote in message news:4577934f0908250241i195dc691x3f8c552e72791...@mail.gmail.com... Hi gang, I'm

Re: [PHP] Re: Directory Listing

2009-08-25 Thread Ashley Sheridan
On Tue, 2009-08-25 at 12:06 +0200, Ralph Deffke wrote: I would say foreach( $dirTree as $key = $value ){ echo $key .br; foreach( $value as $v){ echo $v .br; } } something like that ralph_def...@yahoo.de Tom Chubb tomch...@gmail.com wrote in message

Re: [PHP] Re: Directory Listing

2009-08-25 Thread Tom Chubb
2009/8/25 Ashley Sheridan a...@ashleysheridan.co.uk: On Tue, 2009-08-25 at 12:06 +0200, Ralph Deffke wrote: I would say foreach( $dirTree as $key = $value ){     echo $key .br;     foreach( $value as $v){         echo $v .br;     } } something like that ralph_def...@yahoo.de Tom Chubb

Re: [PHP] Re: Directory Listing

2009-08-25 Thread Tom Chubb
2009/8/25 Ralph Deffke ralph_def...@yahoo.de: I would say foreach( $dirTree as $key = $value ){    echo $key .br;    foreach( $value as $v){        echo $v .br;    } } something like that ralph_def...@yahoo.de Tom Chubb tomch...@gmail.com wrote in message

Re: [PHP] Re: Directory Listing

2009-08-25 Thread Tom Chubb
I've been playing about more and now I have the following code: ? error_reporting(E_ALL); ini_set('display_errors', true); function getDirectory($path = '.', $ignore = '') { $dirTree = array (); $dirTreeTemp = array (); $fileDate = array (); $ignore[] = '.'; $ignore[] = '..';

[PHP] Re: Directory Listing and File Reading errors

2001-09-05 Thread Richard Lynch
I'm recursivley reading and editing every .htm and .html file in a 500 page website and upgrading it to contain linked CSS, Javascript includes and PHP includes. i can't use a pre_pend file as there's more than one website on the server, and the changes are embedded in the document rather