ok, in this tutorial, i will show you how you can diplay a string only from a certain part of the string. so lets say i have this string:

$string = "i find that wallpaperama has many beautiful wallpapers"

and i only want to show "wallpaperama has many beautiful wallpapers"

i can do this with php strstr() function by using this code

<?php
$string = "i find that wallpaperama has many beautiful wallpapers";
$newstring =strstr ($string, "wallpaperama");
echo($newstring);
?>


and this would be the output:
wallpaperama has many beautiful wallpapers

basically, what i did with this php code, i told php to remove anything before wallpaperama

hope this helps