Hello Experts,
I have an HTML form, which creates a PDF file upon submission.
Part of my form is as follows:
Driver's License Number:
<br><br><input type="text" id="dlNumber" name="dlNumber">
I need each character of the driver's license number to be written at a pre-defined location. Therefore, I need to be able to write each character separate from one another.
Would I use the:
explode();
var_dump(); or
array(); functions or
A combination of all three to achieve this? Or could I just use str_split?
Open in new window
https://www.php.net/manual/en/language.types.string.php#language.types.string.details