Forums

Uppercase, How?

pasqualedi 24 Feb, 2010
Hi!
I need to write in automatic uppercase mode?
How?

Thanks.
GreyHead 24 Feb, 2010
Hi pasqualedi,

You could probably do this with JavScript but the easier solution is probably to change the inputs after submission.
<?php
$input_string = JRequest::getString('input_string', '', 'post');
JRequest::setVar('input_string', strtoupper($input_string));
?>

Bob
This topic is locked and no more replies can be posted.