Search results

  1. Porsche_maniak

    [C#/WPF] Project OMS (Online Music Streamer)

    Long time ago i was also thinking about doing that,but i didn't had (and still) the ability to code in C#.. Btw this thing requires .NET framework 4 :O
  2. Porsche_maniak

    PHP Scan dir for idetical files

    If i am unclear with something please tell..
  3. Porsche_maniak

    PHP Scan dir for idetical files

    I am not good with php and will ask for help... * The folder is named 'fav' * There are subfolders in 'fav' * Each subfolder may contain a .txt file Needed --> * Check for identical .txt file names in all subfolders * Sort 10 most repeating identicals,show(echo) their contents and...
  4. Porsche_maniak

    Can echoed html in php page, use php function

    I am talking about that ... function cleanfolder() {unlink ($favfld); echo '<meta http-equiv="refresh" content="3">';} echo '<div title=\'Once clicked,your favourites will be removed and cannot be restored !\' onclick="cleanfolder()">Clean Folder</div>'; But the above code does...
  5. Porsche_maniak

    [PLS HELP]VBS or JS solution to find and use path...

    Hi guys ! Is there a way to search for example GTR2.exe in all drives and get its path and use that path for something ??? Thanks
  6. Porsche_maniak

    PHP script for checking peers in torrent?

    Hi guys, is there a way to check the seeders,leechers or peers by having only the url to the torrent file ? Thanks.
  7. Porsche_maniak

    Change title style ?

    Hi guys ! Is there a way to change the style of the titles (i mean for the elements not <title></title>) to look better by using CSS ,javascript or PHP ?
  8. Porsche_maniak

    on first mouseover ?

    @Hyperz Works perfect ! TNX :)
  9. Porsche_maniak

    on first mouseover ?

    Is there a way to make mouseover function for one time only (no repeating of the function in next mouseover's)?
  10. Porsche_maniak

    No right click image ?

    I am using the below image for showing no-rightclick for the user (20x20px),but it is ugly. I was wondering if someone can help with a better solution.
  11. Porsche_maniak

    CSS IE6 prob

    As you know ie6 doesn't support fixed position as in the other browsers. So i am using * html #mydiv2{ position: absolute; top: expression(document.compatMode=="CSS1Compat"? document.documentElement.scrollTop+581+"px" : body.scrollTop+5+"px"); } to stick (fix) the image 5 px from the...
  12. Porsche_maniak

    Where do i wrong?

    nope not working
  13. Porsche_maniak

    Where do i wrong?

    aren't they declared ? $unwanted = array(""); $wanted = array("[img=", " width=200]");
  14. Porsche_maniak

    Where do i wrong?

    $value=str_replace($unwanted, $wanted, $value); $unwanted = array(""); $wanted = array("[img=", " width=200]"); When i use the above code,nothing happens.
  15. Porsche_maniak

    Bit more complicated PHP question

    Thanks guys ! I managed to get it working...
  16. Porsche_maniak

    Bit more complicated PHP question

    Warning: gzfile(content/10/05/content/10/05/entry100501-210451.txt.gz) [function.gzfile]: failed to open stream: No such file or directory the bolded shouldnt exist..
  17. Porsche_maniak

    Bit more complicated PHP question

    It is content/10/05 I tried $pathz = CONTENT_DIR.$y.'/'.$m.'/'.$glo; $glo=glob('*.gz'); echo $pathz; To see if i am going to take the .gz file names but it was again content/10/05/
  18. Porsche_maniak

    Bit more complicated PHP question

    @JmZ Yea .. They are arround 1300 .gz files in a folder and keep increasing . Each .gz contains only 1 .txt file . I have a path where the .gz files are - $pathz = CONTENT_DIR.$y.'/'.$m; The path is taking 10 .gz files.When user click the next page it takes the next 10 .gz. I hope i...
  19. Porsche_maniak

    Bit more complicated PHP question

    litewarez really tnx for your effort,but i think that JmZ is right... @ JmZ how do i read each one in a loop ? @litewarez Hmm sounds interesting...
Back
Top