We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

nicolaspar on 12/19/06


Tagged


Versions (?)


ASP - Primer letra en mayusculas


Published in: PHP 


  1. function PrimerLetraMayuscula(ByVal cadena)
  2. cadena = cadena &" "
  3. PrimerLetraMayuscula = ucase(mid(cadena, 1,1)) & mid(cadena, 2, len(cadena))
  4. end function

Report this snippet 

You need to login to post a comment.