PHP Program to convert string into uppercase
<?php
$str = 'hello friends';
echo strtoupper($str)
?>
Output
HELLO FRIENDS
<?php
$str = 'hello friends';
echo strtoupper($str)
?>
Output
HELLO FRIENDS