Program 1
<html>
<head><title>String in PHP Application</title>
<body>
<pre>
<center>
<?php
$mystr="vivek uprit data 123 flair";
$mystr=ucwords($mystr);
//$mystr=ucfirst($mystr);
// $mystr=lcfirst($mystr);
echo $mystr."<br>";
//$mystr="DATA FLAIR FREE COURSE";
//$newstr=strtolower($mystr);
// $newstr=strtoupper($mystr);
// echo $mystr."<br>";
// echo $newstr;
?>
</pre>
</center>
</body>
</html>