<?php /* rpad © System http://qdl.scs-inc.us/?top=6635 */ function rpad($theString, $theLength, $theCharacter = ' ') { return str_pad($theString, $theLength, $theCharacter, STR_PAD_RIGHT); } ?>