On 30-Jan-2004 Dan Joseph wrote: > Hi Everyone, > > Hoping someone can shed a light on this. I have to send a "file > separator" > in a string that I piece together to a remote system. I've been told > this > is x'1C' ASCII or x'22' HEX. I have no idea what to really send. > I've > tried several things. Can someone tell me what it is they're looking > for? >
The FS escape is 0x1C or 28 in decimal. $fs=chr(28); $files='myfile1.dat' .chr(28); $files .='myfile2.dat' .chr(28); $files .='myfile3.dat'; Regards, -- Don Read [EMAIL PROTECTED] -- It's always darkest before the dawn. So if you are going to steal the neighbor's newspaper, that's the time to do it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php