[PHP-WIN] Re: Double quotes question

2002-06-03 Thread Tomator
"Clay Culver" <[EMAIL PROTECTED]> wrote: > > I have a script that lists the files in a directory, and > create links accordingly but if the files contain spaces then the link > won't come out correctly. I am fairly new to PHP and have no real idea > on how I can get it to make links sh

[PHP-WIN] Re: Double quotes question

2002-06-03 Thread Michael Davey
> I did try going else { print "$file />\n"; } but all I get is PHP errors doing this until the double quote > is removed, any help in this would be great. This would work: print ""; and so would: print ""; or even: print << END; But you really should have checked the manual fir