webdev.ramyash@gmail.com

Web Development: February 2015


PHP, MySql, JQuery, Ajax,Wordpress,Woocommerce,HTML,CSS,JavaScript,DOM,jQuery,PHP,SQL,XML,Bootstrap,Web

Convert the first character of "welcome" to uppercase.

The ucfirst () function converts the first character of a string to uppercase.


<?php

$a="welcome";

echo ucfirst($a);

?>