[PHP] file output, columns, etc...

2003-06-05 Thread Dan Joseph
Hi All, Need some help here. I have to format a line with each piece of the line being a fixed set of characters in length, wether its a mix of spaces and letters, or all letters. Here's an example of the line: 06?4111ABDALARM333 N COUNTRY CLUB CANTON DD8

Re: [PHP] file output, columns, etc...

2003-06-05 Thread CPT John W. Holmes
Need some help here. I have to format a line with each piece of the line being a fixed set of characters in length, wether its a mix of spaces and letters, or all letters. Here's an example of the line: 06?4111ABDALARM333 N COUNTRY CLUB CANTON DD8 In this file,

RE: [PHP] file output, columns, etc...

2003-06-05 Thread Dan Joseph
Hi John, -Original Message- Need some help here. I have to format a line with each piece of the line being a fixed set of characters in length, wether its a mix of spaces and printf() or sprintf() should do what you want... That did the trick, thanks! I haven't had