hi i'm just wondering on how can i make all the type text in my textbox all uppercase using php? tnx Alot..
how to automatic text in a textbox all uppercase?
Collapse
X
-
Well, I will give you a tips but you will have to figure out rest:
if char is lower case then
char=char-('a'-'A');
you can make it simplerComment
-
well actually already made a code bout it here it is
Code:<?php $origin =$_GET['txtpickup']; $word = "$origin"; $word = strtoupper($word); echo "$word"; ?>
Comment
-
Like I already said, you must use javascript. By the way, jquery is just a javascript library, it's still javascript. Technically you can also use VBScript but that will only work on IE. And you can use ActionScript if you use Flash. I only mention them for completeness' sake. Your best option is javascript.Comment
Comment