<?php

$string = 'ONCE UPON A TIME IN MUMBAI';
$count_str = strlen($string);

$str = '';
for($i=$count_str-1;$i>= 0;$i--){
    $str.= $string[$i];
}

echo $str;

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: