Hi Shawn,Thanx for the compliments 
I tried to post the next message, but the CODE part gave me that depressing HTML message again
Maybe you can post it, and explain to me one more time how I can post stuff again
TO Henry: Can the HTML/UBB code be taken up as an option, so that the poster can turn them off or on if they want it?
Ok, this is what i wanted to post:
Syntax: RFILL ("String", Length , "Filler")
Parameters:
String
The string that you want to be filled
Length
The length to wich the string must be filled
Filler (Optional)
The character(s) with wich to fill up the string,
if this value is omitted a SPACE will be used as the filler
Returns: The input string filled to the specified length
See Also: LFILL
Examples:
$fill = RFILL("MyName",30); Adds 24 spaces to 'MyName'
$fill = RFILL("",30,"X"); Creates a string of thirty x's.
$fill = RFILL("ThisBox",40,"WithApples"); Adds 'WithApples' to 'ThisBox' untill the length (40) is reached.
Code:
code:
code here