[PHP-DB] donwload listed dir

2005-02-14 Thread it clown
Hi All, How would i create links dynamicaly for each file that has been listed in a dir? Regards __ http://www.webmail.co.za the South African FREE email service -- PHP Database Mailing List (http://www.php.net/) To unsubscribe,

[PHP-DB] Re: 'Page can not be displayed' when hitting the back button

2005-02-14 Thread JeRRy
Hi, Here you go, more info on your posting: session_cache_limiter (PHP 4 = 4.0.3, PHP 5) session_cache_limiter -- Get and/or set the current cache limiter Description string session_cache_limiter ( [string cache_limiter] ) session_cache_limiter() returns the name of the current cache limiter.

RE: [PHP-DB] donwload listed dir

2005-02-14 Thread Bastien Koert
list them out and provide the link for each...code for the lisitng is straight from the manual ?php $dir = /etc/php5/; // Open a known directory, and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { //change

[PHP-DB] Mail question

2005-02-14 Thread ReClMaples
I have a quick, probably easy to answer question. I am trying to add the ability to email from like a quest book or a calendar event and get an authentication error in my error log. I can only believe that this is due to my smtp server needed to know my login and password. Is there a way I can

Re: [PHP-DB] Mail question

2005-02-14 Thread Micah Stevens
I'm replying off-list as this isn't a database question, but check out the pear mail class at: http://pear.php.net It handles SMTP authentication. The standard mail() function does not. HTH -Micah On Monday 14 February 2005 10:12 am, ReClMaples wrote: I have a quick, probably easy to