Re: [PHP] Re: Sending post data from a script

2005-08-06 Thread glumtail
you can try this: $sock = fsockopen($parse_url['host'], $parse_url['port'], $errno, $errstr, 30); if (!$sock) { die("$errstr ($errno)\r\n"); } $tmp = explode('&',$parse_url['query']); $data = NULL; foreach($tmp as $val) { $p = explode('=',$val); if(empty($data)) {

Re: [PHP] Re: jpgs into database

2005-07-18 Thread glumtail
I heard that Microsoft.com stores every images in database. Maybe the cost is the most important thing. 2005/7/19, George B <[EMAIL PROTECTED]>: > > Matthew Weier O'Phinney wrote: > > * Jasper Bryant-Greene <[EMAIL PROTECTED]> : > > > >>George B wrote: > >> > >>>is it pos

Re: [PHP] PHP from CLI with SAPI

2005-07-18 Thread glumtail
just write an PHP-Server

Re: [PHP] not sure why form submission gives me error

2005-07-15 Thread glumtail
I recommend PSPad 2005/7/16, Bruce Gilbert <[EMAIL PROTECTED]>: > > Hello, > > I have a form on my site > > http://www.inspired-evolution.com/Contact.php > > produces this error on submission > > Parse error: parse error, unexpected T_STRING in > /hsphere/local/home/bruceg/inspired-evolution

Re: [PHP] How to run .sql files using php

2005-07-15 Thread glumtail
Ahmed: It's real perfect! B/R 2005/7/14, Ahmed Saad <[EMAIL PROTECTED]>: > > hi babu > > On 7/13/05, babu <[EMAIL PROTECTED]> wrote: > > i have a set of queries which i have placed them in one .sql file.i want > to run this file using php's mssql and oracle(oci) functions. > > you need a d

Re: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread glumtail
Dear Steve: php4ts.dll is needed by php4isapi.dll. if you can visit your pages in wwwroot folder, just try to rename that page to php extension. e.g: rename postinfo.html to postinfo.php C:\PHP │ install.txt │ license.txt │ magic.mime │ news.txt │ php-cli.exe │ php.exe │ php.gif │ php.ini │ php.

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
ows as 'unknown'. > > Still get the 404 errors when trying to view .php pages > > Steve > > -Original Message- > From: glumtail [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 13, 2005 11:10 AM > To: php-general@lists.php.net > Subject: Re: [PHP] 404 e

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
gt; > I'm using PHP 4.x as well. > > Steve > > -Original Message- > From: glumtail [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 13, 2005 11:00 AM > To: php-general@lists.php.net > Subject: Re: [PHP] 404 error - why???!! > > Hello Steve, > is th

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hello Steve, is the ISAPI loaded success? what's your PHP version? Version 4.x works fine. 2005/7/14, Grosz, Steve (IPG IT) <[EMAIL PROTECTED]>: > > Regular .htm files work just fine. Its kinda strange.. > > -Original Message- > From: Richard Davey [mailto:[EMAIL PROTECTED] > Sent

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hi: 1. did you copy php4isap.dll to /php folder? 2. in local disk? 2005/7/14, Grosz, Steve (IPG IT) <[EMAIL PROTECTED]>: > > Ok, I thought I had installed PHP correctly on my Win2003 server, using > ISAPI. I added the extension, and mapped it to the php4isapi.dll file, > added a path to my /p

Re: [PHP] How to run .sql files using php

2005-07-13 Thread glumtail
I think it's better to split the SQL into pieces line 1: create table line 2: insert into . $sql = 'create table' $sql = 'insert into ...' 2005/7/13, Shaw, Chris - Accenture <[EMAIL PROTECTED]>: > > > Can you use mysqli_multi_query for mysql in php5? > > hth > > -Original