$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);
?>
$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
