<?php
$sentance="Hi, I am Ketan";
// remove Hi, from $sentance. Thank you
?>
It very simple try this code
<?php
$sentance= substr($sentance,4); // it will remove first 4 character from string hence it will start from I
?>
Type your Comment below and click to send comment