Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Peter Lind
On 23 June 2010 08:53, Tanel Tammik wrote: > Hi, > > is there a vulnerability with using $_SERVER['REMOTE_ADDR'] in sql queries? > With any and all input to sql queries: escape the input. Then you don't have to ask the question. Regards Peter -- WWW: http://plphp.dk / http://plind.dk LinkedIn

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Simon J Welsh
There's a vulnerability in using anything from the user in SQL queries. Escape it :) On 23/06/2010, at 6:53 PM, Tanel Tammik wrote: > Hi, > > is there a vulnerability with using $_SERVER['REMOTE_ADDR'] in sql queries? > > Br > Tanel > > > > -- > PHP General Mailing List (http://www.php.net

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Adam Richardson
On Wed, Jun 23, 2010 at 2:53 AM, Tanel Tammik wrote: > Hi, > > is there a vulnerability with using $_SERVER['REMOTE_ADDR'] in sql queries? > > Br > Tanel > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > As long as you treat it w

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Rene Veerman
unlikely. it's a apache delivered ip address.. very little chance of insert vulnerabilities, imho. On Wed, Jun 23, 2010 at 8:53 AM, Tanel Tammik wrote: > Hi, > > is there a vulnerability with using $_SERVER['REMOTE_ADDR'] in sql queries? > > Br > Tanel > > > > -- > PHP General Mailing List (http:

[PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Michael Shadle
This is somewhat related to the whole PCI/credit card discussion a couple weeks back. The consensus was basically "leave it to other people" - however, what if YOU are the other person? I wonder if anyone has some BKMs to share about encrypting data in a web application. A lot of people take the m

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tanel Tammik
I was wondering, if there is a chance to manipulate the data this variable holds? Br Tanel "Rene Veerman" wrote in message news:aanlktikwldeucxkru-4ni4pet5lq_5cc_vstnwrtx...@mail.gmail.com... > unlikely. it's a apache delivered ip address.. very little chance of > insert vulnerabilities, imho.

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 12:06 AM, Rene Veerman wrote: > unlikely. it's a apache delivered ip address.. very little chance of > insert vulnerabilities, imho. still, the overhead for a db escape is better than your site being trashed. also, you could look at converting the IP to an INT(10) (at lea

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Peter Lind
On 23 June 2010 09:11, Michael Shadle wrote: > This is somewhat related to the whole PCI/credit card discussion a > couple weeks back. The consensus was basically "leave it to other > people" - however, what if YOU are the other person? > > I wonder if anyone has some BKMs to share about encryptin

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 12:21 AM, Peter Lind wrote: > I haven't had to implement a scheme like this but for an app I'm > working on we've been considering the same issues in order to keep > member data safe. I would say your best bet is to keep the decryption > key in memory while the app is runn

RE: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Peter Lind [mailto:peter.e.l...@gmail.com] > Sent: Wednesday, June 23, 2010 12:22 AM > To: Michael Shadle > Cc: PHP-General > Subject: Re: [PHP] How to store encrypted data and how to store the key? > > On 23 June 2010 09:11, Michael Shadle wrote: > > This is

RE: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Michael Shadle [mailto:mike...@gmail.com] > Sent: Wednesday, June 23, 2010 12:17 AM > To: Rene Veerman > Cc: Tanel Tammik; php-general@lists.php.net > Subject: Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection > > On Wed, Jun 23, 2010 at 12:06 AM, Rene Veerma

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 1:01 AM, Tommy Pham wrote: > If you're going to implement this, then it's better to implement the > conversion in the backend DB (via SP or UDF).  So you can always use MySQL > query browser or the command line to run queries or other methods depending > on your access

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 12:55 AM, Tommy Pham wrote: >> I haven't had to implement a scheme like this but for an app I'm working on >> we've been considering the same issues in order to keep member data safe. >> I would say your best bet is to keep the decryption key in memory while the > > This i

RE: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Michael Shadle [mailto:mike...@gmail.com] > Sent: Wednesday, June 23, 2010 1:07 AM > To: Tommy Pham > Cc: php-general@lists.php.net > Subject: Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection > > On Wed, Jun 23, 2010 at 1:01 AM, Tommy Pham > wrote: > > > I

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 1:12 AM, Tommy Pham wrote: > Then I presume that your firewall, servers, and application is test proven > 'bulletproof'? :-P a) no such thing b) pretty damn solid, yes and the reason? because i don't overcomplicate things. "a simple stack is a happy stack" :) -- PHP

RE: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Michael Shadle [mailto:mike...@gmail.com] > Sent: Wednesday, June 23, 2010 1:20 AM > To: Tommy Pham > Cc: php-general@lists.php.net > Subject: Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection > > On Wed, Jun 23, 2010 at 1:12 AM, Tommy Pham > wrote: > > > T

RE: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Michael Shadle [mailto:mike...@gmail.com] > Sent: Wednesday, June 23, 2010 1:07 AM > To: Tommy Pham > Cc: php-general@lists.php.net > Subject: Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection > > On Wed, Jun 23, 2010 at 1:01 AM, Tommy Pham > wrote: > > > I

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Mike Davies
On Tue, 2010-06-22 at 10:41 -0400, Daniel P. Brown wrote: > On Tue, Jun 22, 2010 at 10:17, Mike Davies > wrote: > [snip!] > > > > Warning: reset() [function.reset]: Passed variable is not an array or > > object in /home/b23aadf/public_html/news/details.php on line 72 > [snip!] > > > > Is anyone a

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Tanel Tammik
"Michael Shadle" wrote in message news:aanlktildd_gdnlffpuwdx5acwwk45jbu4i6ybbmgj...@mail.gmail.com... > On Wed, Jun 23, 2010 at 12:06 AM, Rene Veerman wrote: >> unlikely. it's a apache delivered ip address.. very little chance of >> insert vulnerabilities, imho. > > still, the overhead for a db

Re: [PHP] Stripping Characters

2010-06-23 Thread Richard Quadling
On 23 June 2010 01:03, Rick Dwyer wrote: > $find = '/[^a-z0-9]/i'; Replace that with ... $find = '/[^a-z0-9]++/i'; And now you only need ... $new_string = trim(preg_replace($find, $replace, $old_string)); -- - Richard Quadling "Standing on the shoulders of some very clever giants!" EE

Re: [PHP] Question about logins and locking

2010-06-23 Thread Richard Quadling
On 23 June 2010 07:44, Tommy Pham wrote: >> -Original Message- >> From: James Colannino [mailto:ja...@colannino.org] >> Sent: Tuesday, June 22, 2010 10:06 PM >> To: PHP-General List >> Subject: Re: [PHP] Question about logins and locking >> >> Tommy Pham wrote: >> >> > 1) Set an encrypted

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 12:21 +0300, Tanel Tammik wrote: > "Michael Shadle" wrote in message > news:aanlktildd_gdnlffpuwdx5acwwk45jbu4i6ybbmgj...@mail.gmail.com... > > On Wed, Jun 23, 2010 at 12:06 AM, Rene Veerman wrote: > >> unlikely. it's a apache delivered ip address.. very little chance of >

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Peter Lind
On 23 June 2010 10:09, Michael Shadle wrote: > On Wed, Jun 23, 2010 at 12:55 AM, Tommy Pham wrote: > >>> I haven't had to implement a scheme like this but for an app I'm working on >>> we've been considering the same issues in order to keep member data safe. >>> I would say your best bet is to ke

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Shreyas Agasthya
Mike, Little weird. I executed the same lines of code against my sample database and did not got any warning. You might want to send the code for projects and news to do any comparison? *[I will silently wait for the PHP demi-gods (the Ashleys, the Pauls et al) at hover their vigilant eyes on your

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 15:55 +0530, Shreyas Agasthya wrote: > Mike, > > Little weird. I executed the same lines of code against my sample database > and did not got any warning. You might want to send the code for projects > and news to do any comparison? > *[I will silently wait for the PHP demi-

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Daniel Brown
Hold everything, Mike! On Wed, Jun 23, 2010 at 05:18, Mike Davies wrote: [snip!] > > mysql_select_db($database_general, $general); > $query_details = "SELECT * FROM news WHERE news_id = '$_GET[id]'"; /** * Above line is placed here so that we can be easily, * deliberately, a

[PHP] Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
Hello, I am trying connect to freebsd. I have php 5.3.2 installed. I have to connect using public keys, but without succes. Function ssh2_connect throws me following error (then I have invalid resource for function ssh2_auth_pubkey_file)... PHP Warning: ssh2_connect(): Error starting up SSH

[PHP] FW: Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
Hello, I am trying connect to freebsd. I have php 5.3.2 installed. I have to connect using public keys, but without succes. Function ssh2_connect throws me following error (then I have invalid resource for function ssh2_auth_pubkey_file)... PHP Warning: ssh2_connect(): Error starting up SSH c

Re: [PHP] Problem with ssh2_connect

2010-06-23 Thread Daniel P. Brown
2010/6/23 Radek Krejča : > > PHP Warning:  ssh2_connect(): Error starting up SSH connection(-5): Unable to > exchange encryption keys in /usr/home/radek/pokus.php on line 14 Make sure that the key file exists by that name in the location you're specifying (hint: use a full p

RE: [PHP] FW: Problem with ssh2_connect

2010-06-23 Thread Bob McConnell
From: Radek Krejca > I am trying connect to freebsd. I have php 5.3.2 installed. I have to connect > using public keys, but without succes. Function ssh2_connect throws me > following error (then I have invalid resource for function ssh2_auth_pubkey_file)... > > PHP Warning: ssh2_connect(): Erro

RE: [PHP] FW: Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
> Have you tried opening the connection from the command line with OpenSSL > or similar tools? Do you know those credentials will actually work? Yes, It is my key (now I am testing), but I got this message before I run ssh2_auth_public... Radek -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Bastien Koert
On Wed, Jun 23, 2010 at 6:09 AM, Peter Lind wrote: > On 23 June 2010 10:09, Michael Shadle wrote: >> On Wed, Jun 23, 2010 at 12:55 AM, Tommy Pham wrote: >> I haven't had to implement a scheme like this but for an app I'm working on we've been considering the same issues in order to kee

[PHP] Invoice Software

2010-06-23 Thread Floyd Resler
Now that I'm finally landing some freelance PHP work, I am in need of some software that I can add clients, enter estimates, keep track of hours, and create invoices with. I'd like it to be Web-based. I could write my own, of course, but why do it if it's already done?! Does anyone know of su

RE: [PHP] Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
Make sure that the key file exists by that name in the location you're specifying (hint: use a full path). it is the right key for that server. the permissions on the file are very strict (chmod 0400 ssh-rsa). I got error message immediately after

Re: [PHP] Problem with ssh2_connect

2010-06-23 Thread Daniel P. Brown
2010/6/23 Radek Krejča : > >    Make sure that > >         the key file exists by that name in the location you're > specifying (hint: use a full path). >         it is the right key for that server. >         the permissions on the file are very strict (chmod 0400 ssh-rsa). > > > I

Re: [PHP] Invoice Software

2010-06-23 Thread Daniel P. Brown
On Wed, Jun 23, 2010 at 09:52, Floyd Resler wrote: > Now that I'm finally landing some freelance PHP work, I am in need of some > software that I can add clients, enter estimates, keep track of hours, and > create invoices with.  I'd like it to be Web-based.  I could write my own, of > course,

RE: [PHP] Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
> >Make sure that > > the key file exists by that name in the location you're > specifying (hint: use a full path). Its in ssh2_auth_public..., yes, I am using full path there. > it is the right key for that server. Yes, I use it with ssh command from line on the sam

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Andrew Ballard
On Wed, Jun 23, 2010 at 6:01 AM, Ashley Sheridan wrote: > That's what I'd use. You may also have to wrap it inside an abs() call > to ensure it's a positive number, as some IP addresses equate to > negative with ip2long(). NO NO NO NO NO Andrew -- PHP General Mailing List (http://www.php

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 10:35 -0400, Andrew Ballard wrote: > On Wed, Jun 23, 2010 at 6:01 AM, Ashley Sheridan > wrote: > > That's what I'd use. You may also have to wrap it inside an abs() call > > to ensure it's a positive number, as some IP addresses equate to > > negative with ip2long(). > > NO

Re: [PHP] Invoice Software

2010-06-23 Thread Paul M Foster
On Wed, Jun 23, 2010 at 09:52:21AM -0400, Floyd Resler wrote: > Now that I'm finally landing some freelance PHP work, I am in need of some > software that I can add clients, enter estimates, keep track of hours, and > create invoices with. I'd like it to be Web-based. I could write my own, of

Re: [PHP] Invoice Software

2010-06-23 Thread Jeff MacDonald
freshbooks.com On 2010-06-23, at 11:44 AM, Paul M Foster wrote: > On Wed, Jun 23, 2010 at 09:52:21AM -0400, Floyd Resler wrote: > >> Now that I'm finally landing some freelance PHP work, I am in need of some >> software that I can add clients, enter estimates, keep track of hours, and >> creat

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Andrew Ballard
On Wed, Jun 23, 2010 at 10:39 AM, Ashley Sheridan wrote: > > On Wed, 2010-06-23 at 10:35 -0400, Andrew Ballard wrote: > > On Wed, Jun 23, 2010 at 6:01 AM, Ashley Sheridan > wrote: > > That's what I'd use. You may also have to wrap it inside an abs() call > > to ensure it's a positive number, as s

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 10:58 -0400, Andrew Ballard wrote: > On Wed, Jun 23, 2010 at 10:39 AM, Ashley Sheridan > wrote: > > > > On Wed, 2010-06-23 at 10:35 -0400, Andrew Ballard wrote: > > > > On Wed, Jun 23, 2010 at 6:01 AM, Ashley Sheridan > > wrote: > > > That's what I'd use. You may also have

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Mike Davies
On Wed, 2010-06-23 at 09:09 -0400, Daniel Brown wrote: > Hold everything, Mike! > > On Wed, Jun 23, 2010 at 05:18, Mike Davies > wrote: > [snip!] > > > > > mysql_select_db($database_general, $general); > > $query_details = "SELECT * FROM news WHERE news_id = '$_GET[id]'"; > > /** > *

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 16:14 +0100, Mike Davies wrote: > On Wed, 2010-06-23 at 09:09 -0400, Daniel Brown wrote: > > Hold everything, Mike! > > > > On Wed, Jun 23, 2010 at 05:18, Mike Davies > > wrote: > > [snip!] > > > > > > > > mysql_select_db($database_general, $general); > > > $query_details

Re: [PHP] Invoice Software

2010-06-23 Thread Bastien Koert
On Wed, Jun 23, 2010 at 10:01 AM, Daniel P. Brown wrote: > On Wed, Jun 23, 2010 at 09:52, Floyd Resler wrote: >> Now that I'm finally landing some freelance PHP work, I am in need of some >> software that I can add clients, enter estimates, keep track of hours, and >> create invoices with.  I'd

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Daniel Brown
On Wed, Jun 23, 2010 at 11:14, Mike Davies wrote: >> > Nothing is returned for SELECT query as there is nothing in the table as > yet. Perhaps this is the problem. Typically all projects would have an > associated thumb image but all news items may not. Perhaps a thumb image > is necessary to stop

RE: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Bob McConnell
From: Ashley Sheridan > Out of interest, how does PHP calculate the IP number, as it was my > understanding of IP numbers that they can't be negative. > > For example, my IP address is 89.243.156.135 > The four parts as binary: > 01011001 > 0011 > 10011100 > 1111 > > >From there, I thoug

[PHP] Re:

2010-06-23 Thread Navid
Please DO NOT click on the following link. It should have been sent in a previous email. Seems like someone has hijacked my email and is sending this to all my contacts. Thanks, Navid On Wed, Jun 23, 2010 at 7:38 AM, Navid Yar wrote: > http://saq9.grkhworld.com/ > > > > > -- PHP General Maili

Re: [PHP] Warning messages on web page.

2010-06-23 Thread Mike Davies
On Wed, 2010-06-23 at 16:22 +0100, Ashley Sheridan wrote: > On Wed, 2010-06-23 at 16:14 +0100, Mike Davies wrote: > If you haven't in your code, then make sure you define $thumbsarray as > an array before you attempt to use it in the loop. This will have no > effect where rows are returned, but i

Re: [PHP] $_SERVER['REMOTE_ADDR'] and sql injection

2010-06-23 Thread Andrew Ballard
On Wed, Jun 23, 2010 at 11:09 AM, Ashley Sheridan wrote: > Out of interest, how does PHP calculate the IP number, as it was my > understanding of IP numbers that they can't be negative. > > For example, my IP address is 89.243.156.135 > The four parts as binary: > 01011001 > 0011 > 10011100 >

Re: [PHP] Invoice Software

2010-06-23 Thread Floyd Resler
On Jun 23, 2010, at 11:24 AM, Bastien Koert wrote: > On Wed, Jun 23, 2010 at 10:01 AM, Daniel P. Brown > wrote: >> On Wed, Jun 23, 2010 at 09:52, Floyd Resler wrote: >>> Now that I'm finally landing some freelance PHP work, I am in need of some >>> software that I can add clients, enter estima

Re: [PHP] Problem with ssh2_connect

2010-06-23 Thread Brandon Rampersad
Do you have lexneter installed. I think that could be the problem. 2010/6/23 Radek Krejča > > > >Make sure that > > > > the key file exists by that name in the location you're > > specifying (hint: use a full path). > Its in ssh2_auth_public..., yes, I am using full path ther

RE: [PHP] In what scenario an extension of a class is useful?

2010-06-23 Thread Daevid Vincent
Priceless. Could also be extended applied to babies too. ;-p object babies extends mammal ( function eat (milk $food) ) ROFL. > -Original Message- > From: Rene Veerman [mailto:rene7...@gmail.com] > Sent: Tuesday, June 22, 2010 11:58 PM > > object mammal ( > function eat (mixed $fo

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Michael Shadle
I talked with a friend who actually had this implemented before and banks had signed off on it after reviewing it. load balancer (irrelevant to the security piece) web server(s) - only accepts traffic to port 80/443. can only forward requests on to the app server, one direction. app server(s) -

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Peter Lind
On 23 June 2010 20:55, Michael Shadle wrote: > I talked with a friend who actually had this implemented before and > banks had signed off on it after reviewing it. > > load balancer (irrelevant to the security piece) > > web server(s) - only accepts traffic to port 80/443. can only forward > reque

Re: [PHP] How to store encrypted data and how to store the key?

2010-06-23 Thread Michael Shadle
On Wed, Jun 23, 2010 at 12:43 PM, Peter Lind wrote: > I'm just wondering if this is a correct understanding: > 1. plaintext data arrives on the web frontend. or over SSL > 2. It's sent to the app server SSL or non-SSL - your choice > 3. It's encrypted and sent to the DB server encrypted or n

RE: [PHP] Problem with ssh2_connect

2010-06-23 Thread Radek Krejča
Do you have lexneter installed. I think that could be the problem. 2010/6/23 Radek Krejča > >    Make sure that What is lexneter please? Radek -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] IIS, PHP and HTML

2010-06-23 Thread Phillip Baker
Greetings All, I am at a new Gig. So this is the existing setup so changing it at least in the short term is not an option. We are in an IIS shop. We have a bunch of files that are html, and in need of php functionality. And that would be a BUNCH of files. I am interested in setting if I can set

Re: [PHP] IIS, PHP and HTML

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 16:26 -0600, Phillip Baker wrote: > Greetings All, > > I am at a new Gig. > So this is the existing setup so changing it at least in the short term is > not an option. > > We are in an IIS shop. > We have a bunch of files that are html, and in need of php functionality. > A

RE: [PHP] IIS, PHP and HTML

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] > Sent: Wednesday, June 23, 2010 4:47 PM > To: Phillip Baker > Cc: PHP General List > Subject: Re: [PHP] IIS, PHP and HTML > > On Wed, 2010-06-23 at 16:26 -0600, Phillip Baker wrote: > > > Greetings All, > > >

RE: [PHP] IIS, PHP and HTML

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 17:34 -0700, Tommy Pham wrote: > > -Original Message- > > From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] > > Sent: Wednesday, June 23, 2010 4:47 PM > > To: Phillip Baker > > Cc: PHP General List > > Subject: Re: [PHP] IIS, PHP and HTML > > > > On Wed, 2010-