Fw: [PHP-WIN] Problem with 2 buttons

2003-09-23 Thread malte
- Original Message - From: malte To: [EMAIL PROTECTED] Sent: Monday, September 22, 2003 10:43 PM Subject: Re: [PHP-WIN] Problem with 2 buttons what do you need this for? -> it does nothing give your image inputs hard-coded values, like and don't use isset try: if

Re: [PHP-WIN] Date question?

2003-09-12 Thread malte
you also can do check out date() and mktime() in the php manual... oh yeah and i supposed 2003-04-02 to mean February 4th 2003 if i'm wrong you have to change the mktime line.. - Original Message - From: "Disko_kex" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, September 12,

Re: [PHP-WIN] free windows editor with ftp?

2003-09-10 Thread malte
I use Maguma Studio. Its easy to use and has FTP funtionality. It is available for free on http://www.maguma.com/en/download.html - Original Message - From: "Chris L" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 10, 2003 5:34 PM Subject: [PHP-WIN] free windows e

Re: [PHP-WIN] List files in a folder?

2003-07-08 Thread malte
$my_directory = "./stuff/morestuff") $dir = dir($my_directory); while($temp = $dir->read()) { $dirarray[] = $temp; } - Original Message - From: "Anthony" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 08, 2003 4:27 PM Subject: [PHP-WIN] List files in a folder? > Is t

Re: [PHP-WIN] Fw: PHP mySQL testing server does not map to the URL

2003-06-17 Thread malte
PhpMyAdmin needs to be in your webservers document root. If that is the case you can access it through your webserver (http://localhost/phpmyadmin/index.php) note that the link above may vary depending on your configuration malte - Original Message - From: "Ildiko Nyari&quo

Re: [PHP-WIN] problems with variables

2003-06-16 Thread malte
you probably got register globals turned off in your php.ini file. Turn it on or use the $HTTP__VARS['varname'] Arrays can be POST, GET, SESSION and so on malte - Original Message - From: "Felipe Lorente" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]&g