convert to uppercase

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rcsreddy
    New Member
    • Nov 2007
    • 1

    convert to uppercase

    any way to convert to uppercase in PHP immediate after keyin the data
  • rpnew
    New Member
    • Aug 2007
    • 189

    #2
    Originally posted by rcsreddy
    any way to convert to uppercase in PHP immediate after keyin the data
    Hi,
    What do you mean by "immediate after keyin the data" ??
    Does this mean that as soon as you enter the data your data should be converted to uppercase...... . well you cant do that with PHP as you need to submit the page for that..... but if you want to do it on client side... then you can use Javascript..... .

    Regards,
    RP

    Comment

    • Markus
      Recognized Expert Expert
      • Jun 2007
      • 6092

      #3
      Or you could use css:
      [code=html]
      <input type="text" style="text-transform: uppercase;" />
      [/code]

      Comment

      Working...