Letter script

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

    Letter script

    I need a script to get letters from a word

    ex:
    $word = "shad0w";
    getletter(1,$word) should return s.
    getletter(2,$word) should return h.
    whatmp3.name - search mp3 on mobile

    #2
    go to php.net and read up on the substr function

    Comment


      #3
      $word = "shadow";
      for($x=0;$x<strlen($word);$x++){
      echo $word[$x]."<br/>";
      }

      i think.
      U shud check owt wat amy said tho.

      Comment

      Working...
      X