is it possible? If yes how

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

    is it possible? If yes how

    look at http://nextmobs.skyhosting.tk
    pls is it possible to show mp3 music grabber in the music folder? If yes pls tell me how to go about it. Thanks all

    #2
    make a folder called music and do a string replacement on the grabber script to include the word "/music/" and then place the music grabber script inside of it

    Comment


      #3
      thanks, u mean i should rename the grabber with the word "music" ?

      Comment


        #4
        you would have to put a string replacement in the grabber something on the lines of:
        PHP Code:
        $text str_replace("some word here","/music/",$text); 
        but without seeing the script im just guessing ..... it might need preg_replace which is slightly different:
        PHP Code:
        $text preg_replace("/index.php?page=music&(.*?)" /is", "/music/index.php?$1\""$text); 
        but once again its a complete guess

        Added after 2 minutes:

        Heres a better example of preg replace: http://coding-talk.com/f14/help-how-...is-code-17110/
        Last edited by something else; 18.03.12, 01:24.

        Comment

        Working...
        X