Re: [PHP] a questoin about the # char

2008-06-13 Thread Daniel Brown
On Thu, Jun 12, 2008 at 10:05 PM, Robert Cummings [EMAIL PROTECTED] wrote: CVS conflict?? :) Actually, I should say... the backup file due to a CVS conflict or auto merge. Which is funny to see when you're editing a Vim-backup of a backed-up file and it gets swept up by an automated CVS

Re: [PHP] a questoin about the # char

2008-06-13 Thread Shiplu
On Thu, Jun 12, 2008 at 8:18 PM, Sebastian Camino [EMAIL PROTECTED] wrote: Hello, I want to know what the # char does. On a website I was working at, I tried to open a file with a # in it's name and I got an error. So I'd really appreciate any help to know how to avoid the error and what

Re: [PHP] a questoin about the # char

2008-06-12 Thread Daniel Brown
On Thu, Jun 12, 2008 at 8:18 PM, Sebastian Camino [EMAIL PROTECTED] wrote: Hello, I want to know what the # char does. On a website I was working at, I tried to open a file with a # in it's name and I got an error. So I'd really appreciate any help to know how to avoid the error and what

Re: [PHP] a questoin about the # char

2008-06-12 Thread DeadTOm
Inside a php script the '#' denotes the beginning of a comment. I don't know that it has any use at all in the address line. What specifically is the error? I'd guess that php would ignore the rest of the line following the '#' and so this could generate any number of errors depending on what

Re: [PHP] a questoin about the # char

2008-06-12 Thread Chris
Sebastian Camino wrote: Hello, I want to know what the # char does. In a url it's an anchor tag (http://www.w3schools.com/HTML/html_links.asp). In php it's used to mark a comment. ?php # this is a comment and not executed. ? It means nothing specific in a filename. -- Postgresql php

Re: [PHP] a questoin about the # char

2008-06-12 Thread Robert Cummings
On Fri, 2008-06-13 at 11:10 +1000, Chris wrote: Sebastian Camino wrote: Hello, I want to know what the # char does. In a url it's an anchor tag (http://www.w3schools.com/HTML/html_links.asp). In php it's used to mark a comment. ?php # this is a comment and not executed. ? It

Re: [PHP] a questoin about the # char

2008-06-12 Thread Robert Cummings
On Thu, 2008-06-12 at 22:03 -0400, Robert Cummings wrote: On Fri, 2008-06-13 at 11:10 +1000, Chris wrote: Sebastian Camino wrote: Hello, I want to know what the # char does. In a url it's an anchor tag (http://www.w3schools.com/HTML/html_links.asp). In php it's used to mark