From today onwards I will post small php tutorials for all you IT lovers 
if you don't know about php please go to w3schools its the best place to learn.
Today I will show you how to revearse a string without using inbuilt php functions.
try alone before looking at he code.


if you don't know about php please go to w3schools its the best place to learn.
Today I will show you how to revearse a string without using inbuilt php functions.
try alone before looking at he code.
PHP:
<?php
$my_string = "make this reverse";
$i = 0;
$output ="";
while($c = $my_string[$i]) // you can accesses each character this way
{
$output = $c.$output; //concatinate $c infront of $output
$i++;
}
echo $output; //esrever siht ekam
?>

