RE: [PHP-WIN] Is there a PHP-WIN FAQ?

2002-08-29 Thread Svensson, B.A.T. (HKG)
Sound like a good idea (I haven't seen an FAQ either), and included can also be some helpful tips about additional reading about things that are not directly related, but close to php, like database issues, etc. Anyhow, many answers to question in this list, I would believe, could be found at th

php-windows Digest 29 Aug 2002 11:37:38 -0000 Issue 1313

2002-08-29 Thread php-windows-digest-help
php-windows Digest 29 Aug 2002 11:37:38 - Issue 1313 Topics (messages 15571 through 15583): Re: PHP MSSQL versions 15571 by: David Hollister Re: Sharing news or other data 15572 by: David Hollister Re: Is there a PHP-WIN FAQ? 15573 by: Christoph Grottolo 15

RE: [PHP-WIN] Re: PHP Command Line Syntax

2002-08-29 Thread Svensson, B.A.T. (HKG)
CRON are you refering to crontab on unix boxes? If so the equal process program name is called AT.exe on windows (NT) boxes: The AT command schedules commands and programs to run on a computer at a specified time and date. The Schedule service must be running to use the AT command. AT [\\compute

[PHP-WIN] Porting from IIS and VBS to Apache and PHP

2002-08-29 Thread Svensson, B.A.T. (HKG)
Hi guys, I will probably in a short period of time start to port a site with some few scripts written in VBS on an IIS. The port might be targeted to an Apache server with php. For uploading files, ASPUpload is used, and the scripts are communicating with and MS SQL server with AODBC. In additio

RE: [PHP-WIN] PHP/MySQL/APache on CD

2002-08-29 Thread Svensson, B.A.T. (HKG)
> I thought a couple of weeks ago I saw someone working on a PHP/MySQL/Apache > (all running from a CD) on here. Does anyone remember who that was? Running an RDBMS on a CD-ROM? An interesting and original concept. Is this some kind of special purpose hard coded embedded read only system (like

RE: [PHP-WIN] PHP/MySQL/APache on CD

2002-08-29 Thread Asendorf, John
Oh, I should have replied to my own message... I found the guy. It was actually on the MySQL mail list. It uses scratch directories on the hard drive but all three of the executeables run from the CD. I'm waiting for him to get back to me. John - John Asendorf - [EMAIL PRO

Re: [PHP-WIN] PHP/MySQL/APache on CD

2002-08-29 Thread Luis Ferro
Please, Post/repost on the mailling list (or send a copy to me) as i'm also interested on how to assemble a solution like that... Thanx in advance, Luis Ferro Asendorf, John wrote: >Oh, I should have replied to my own message... I found the guy. It was >actually on the MySQL mail list. It u

[PHP-WIN] use MS publisher COM object

2002-08-29 Thread Jeroen Hendriks
Hello, Does anyone know how I can get the properties (File / Properties) from a Microsoft Publisher file by using it's COM-objects? And I want to save a Microsoft Publisher document as a text-document (.txt) by using it's COM-objects. I only can save it as a rtf-document. I have already got thi

[PHP-WIN] PHP / MySQL Guestbook

2002-08-29 Thread Andreas Esser
hi, i have written a php guestbook using a mysql database to store and recall the entries that where typed in by the visitor. there is a formular with several fields like "name", "email" and "message". here´s the problem: the visitor types some message into the message field, i.e.: " hello,

RE: [PHP-WIN] PHP / MySQL Guestbook

2002-08-29 Thread dash php
It is probably storing the data like that, but the display page isn't displaying it like that. You'll need either to nl2br() it or put tags around it. You can check the page source and see if it looks like that. Either of the above solutions should work. -Dash -Original Message- From:

Fw: [PHP-WIN] PHP / MySQL Guestbook

2002-08-29 Thread Afan Pasalic
try this way: $db = mysql_connect($host, $user, $passwd); mysql_select_db($dbName, $db); $result = mysql_query("select * from gueastbook", $db); while($myrow = mysql_fetch_array($result)) { echo nl2br($myrow[message]); } - Original Message - From: Andreas Esser To: [EMAIL PRO

[PHP-WIN] Re: skipping quotes...

2002-08-29 Thread Mike Tsapenko
Hello, Afan. The you have to replace each (") symbol with ("). But better use htmlspecialchars function. In your case this would be echo "" -- Mike Tsapenko Chief of Web-development Dept. AlarIT http://www.AlarIT.com "Afan Pasalic" <[EMAIL PROTECTED]> ???/ ?

[PHP-WIN] .htaccess protection / php

2002-08-29 Thread Andreas Esser
hi, i have written a php script, that automatically creates an user directory, a .htaccess and an index.php file in this user dir. the file, where the username and the password is stored, will also be created automatically. now the problem: i am using the php " md5( ) " function to encrypt the

php-windows Digest 30 Aug 2002 03:15:22 -0000 Issue 1314

2002-08-29 Thread php-windows-digest-help
php-windows Digest 30 Aug 2002 03:15:22 - Issue 1314 Topics (messages 15584 through 15594): Re: PHP Command Line Syntax 15584 by: Svensson, B.A.T. (HKG) Porting from IIS and VBS to Apache and PHP 15585 by: Svensson, B.A.T. (HKG) Re: PHP/MySQL/APache on CD 15586 by:

RE: [PHP-WIN] .htaccess protection / php

2002-08-29 Thread Christian Leberfinger
> i am using the php " md5( ) " function to encrypt > the password. so, when i want to access to the new > user "index.php" the password pop-up window appears > and i type in the username and password, but i can´t > access the user file. Hi, I also wrote a script creating .htaccess-files and I t