Sunday, 14 July 2013

PHP program for uppercase or lowercase a string

<!DOCTYPE html>
<html>
<body>

<%
name = "Bill Gates"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>


</body>
</html>





OUTPUT 

BILL GATES
bill gates 

0 comments:

Post a Comment