Re: [PHP] php and asp

2003-01-09 Thread Khalid El-Kary
Maybe you mean that PHP can use COM on windows platforms and load .NET modules http://www.php.net/manual/en/ref.com.php (com) http://www.php.net/manual/en/ref.dotnet.php (.NET) Regards, Khalid Hello all I seem to recall php being able to provide some suport for asp. How would I turn this featu

Re: [PHP] php and asp

2003-01-09 Thread Clint Tredway
The only thing PHP can do that's related to asp, is use the <% like asp does. This is not recommended though.. Clint - Original Message - From: "Jerry M. Howell II" <[EMAIL PROTECTED]> To: "PHP Mailing List" <[EMAIL PROTECTED]> Sent: Monday, January 06, 2003 7:34 PM Subject: [PHP] php and

Re: [PHP] php and asp

2003-01-09 Thread Adam Voigt
No idea what your talking about, PHP can't parse ASP code and vice versa. On Mon, 2003-01-06 at 20:34, Jerry M. Howell II wrote: Hello all I seem to recall php being able to provide some suport for asp. How would I turn this feature on? is it a line in the php.ini or is

Re: [PHP] php and asp

2001-05-11 Thread Luiz Vitor
I forgot to tell you... you don't need to install any component in your server. The FileSystemObject already comes with IIS 5.0. []'s Luiz Vitor - Original Message - From: "todd kennedy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 11, 2001 12:42 AM Subject: [PHP] php an

Re: [PHP] php and asp

2001-05-11 Thread Luiz Vitor
You can use this code: set fso = Server.CreateObject("Scripting.FileSystemObject") set fs = fso.GetFolder("Server.MapPath("/images")) for each file in fs.Files Response.write file.name & "" Response.write file.size next You'll have to use the FileSystemObject in order to get data from a text

Re: [PHP] php and asp

2001-05-10 Thread Michael Kimsal
Generally, you'd have to use a COM object written specifically to deal with files. There are some ways to look at the raw data from an image and file and extract that info, but it's frankly beyond me at this time of night. :) If you have control over the server the ASP code is on, you might con