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