help me in coding %phn%

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help me in coding %phn%

    Bro i want to make %phn% or :phone: tag to show user agent.Can any1 of u help me

    #2
    WTF %phn% tag ?!?

    you only need this
    PHP Code:
    <?php
    $browser
    =$_SERVER['HTTP_USER_AGENT'];
    echo 
    $browser;
    ?>
    to display User Agent
    It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
    ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
    ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
    キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

    Comment


      #3
      Originally posted by shushant View Post
      Bro i want to make %phn% or :phone: tag to show user agent.Can any1 of u help me
      PHP Code:
      $sample_text 'You are using :phone: to view this site.';
      $sample_text stristr($sample_text, array(':phone:' => $_SERVER['HTTP_USER_AGENT']));
      echo 
      $sample_text

      Comment


        #4
        Thanx frnd

        Comment

        Working...
        X