[PHP] php 5.04 register_globals aint acting right.

2005-08-16 Thread Daniel Baughman
                 I have register globals enabled, or set to “On”. Isn’t this suppose to take all of the $_POST variables and $_GET variables and make initialize them by name? i.e. $_POST[‘runquery’] will be accessible via simply $runquery ??   Dan Baughman IT Technician Professional Bull

RE: [PHP] php 5.04 register_globals aint acting right.

2005-08-16 Thread Daniel Baughman
.. but was wondering if anyone else ran into these issues. -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 16, 2005 7:27 AM To: Daniel Baughman Cc: php-general@lists.php.net Subject: Re: [PHP] php 5.04 register_globals aint acting right. Daniel Baughman wrote

[PHP] mssql 20020429

2005-08-15 Thread Daniel Baughman
Hey guys, I'm looking for the php_mssql.dll with api version: 20020429 Does anyone know where I can translate that to a version release in order to find the release with that version dll or something? Or have a resource for finding modules based on API version? Regards, Dan -- PHP General

RE: [PHP] mssql 20020429

2005-08-15 Thread Daniel Baughman
Never mind I found it. It was 4.2.1 But... now I get IIS complaining the CGI module hasn't returned a full set of headers :( -Original Message- From: Daniel Baughman [mailto:[EMAIL PROTECTED] Sent: Monday, August 15, 2005 2:58 PM To: php-general@lists.php.net Subject: [PHP] mssql

RE: [PHP] mssql 20020429

2005-08-15 Thread Daniel Baughman
The mssql_connect function with api# 20020429 does not do name resolution via the system get host by name?? Maybe that one of the reasons they upgraded -Original Message- From: Daniel Baughman [mailto:[EMAIL PROTECTED] Sent: Monday, August 15, 2005 3:02 PM To: 'Daniel Baughman'; php

[PHP] back slashes

2005-07-08 Thread Daniel Baughman
     Hello all,    I’m attempting to insert a windows path into a mysql database via PHP, but it keeps ineterpreting the backslashes as escape chars. Lets say I have a string: c:\www\test I want to insert it into a database, but what ends up getting inserted is: c:wwwtest I can not get

[PHP] PHP Tool to answer emails

2005-04-04 Thread Daniel Baughman
Hi all, I am looking for a php tool that will provide email tracking and a web interface to an email box. Pretty much, we get lots of emails directed to an administrative email account (most of the valid emails) that need response. To the point that one person is getting over whelmed. It

[PHP] PHP alternative to share point portal

2005-01-31 Thread Daniel Baughman
My company is considering spending lots of dough on a share point portal and I am trying to find an alternative (as well as an excuse to get a linux server in here). Anyone have any good luck with anything or have any recommendations for any apps out there? Regards, Dan Baughman -- PHP

[PHP] PHP based mysql search tool

2005-01-26 Thread Daniel Baughman
I am looking for a full featured search tool I can plug into a couple of databases via a php front end. I currently have some of the text indexing done and have some basic search setup, using mysql queries like select from table where match 'search term' against column; But am looking for

[PHP] .htpasswd login

2004-05-27 Thread Daniel Baughman
I have some sites that I would like to view the user name that someone provided to the basic authentication mechanism in apache. Does php/apache provide a means for this?