Tuesday, August 23, 2016

search 'en' into a string php

<?php  $uri = $_SERVER['REQUEST_URI']; // or taken from another source //
if( strpos($uri, 'en') !== false ){
   // Your action goes here! //
   echo "A place for everything and all in its place";
} else { echo "Un loc pentru toate si toate la locul lor"; }
 ?>

No comments:

Post a Comment