Search results

  1. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    http://www.defectalisman.com/examples/statBar1.rar latest version, I am working on another but that wont be released to the public :p The reason for the 'boarder' is I am dyslexic. I can't spell, I would have thought most people would know this by now :o Change it by all means :p
  2. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    uhm... This seems like a good time as any. You are not required to post or spam the forums to avoid inactivity rule. You are only asked to log in once in 2 weeks.
  3. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    hmm... It was just a warning as the size of the images and the percent full was totally random. For all I know they could have al popped out at the max width and 100% full. This would do damage to my connection and thought it fair to warn people before clicking it :) Those scores are from a...
  4. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Well if you use only the text output from the AIP you should get the same result. A huge parse time and after 2 or 3 refreshes a suspended account.
  5. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    @tnl : The script I posted last was what I thought you needed. It loops through any paths in the $dir_stack array and removes any files from them, whilst doing this it also pushs any directories found to the $dir_stack array for the next loop. Once it has gone as far as it can in the directory...
  6. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Not bad. You might want to remove the 2 blank spaces(&nbsp) before the Free space/bandwidth <br>Free Space in %: <br> &nbsp; <img.... Also I have further worked on the stat bar so it can have a gradient from and to what ever RGB color you want via the query string. Also has a 3D switch that...
  7. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Thank you B. @tnl: If you want to make that OO I would recomend rather creating a file handling class. Would seem silly to turn 1 function that only has 1 argument into a class all on its own :p
  8. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Thats why I posted this one just above the quoted post of yours $dir_stack = array('test/'); $i = 0; while ($i <= count($dir_stack)-1) { echo $dir_stack[$i].'<br>'; if ($dir = opendir($dir_stack[$i])) { while (false !== ($file = readdir($dir))) { if...
  9. DefecTalisman

    Unsuspension Request for yz7hmpm

    Moving to Spanish forums.
  10. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Ok, heres one to recursively remove files from a directory and also files from any sub directories. It then removes all the folders :p $dir_stack = array('test/'); $i = 0; while ($i <= count($dir_stack)-1) { echo $dir_stack[$i].'<br>'; if ($dir = opendir($dir_stack[$i])) { while (false !==...
  11. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Could try this $path='test/'; if ($dir = opendir($path)) { while (false !== ($file = readdir($dir))) { if ($file != "." && $file != "..") { unlink($path.$file); } } closedir($dir); rmdir($path)...
  12. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    I am not sure about that. I dont think it wise to start a bookies office out of the forums :p But a friendly bet every now and then cant hurt anyone :) Just for that I would have put all my credits on my lady, she kick me in alot of games :O
  13. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    No stress man, just thought I would let you know :p This is the first time I have let anyone know. At one point we where 1st and 2nd on the arcade. Our day will come again. I just need 1-2 days straight to get my title back and she is the same.
  14. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Let me break the news to you mate. Angel_Pie is a lady and not just any lady. She is my finance :) and don't worry about the credits :p
  15. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Well then cough em up, cause you just got beaten :p
  16. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Which one are you using ? http://www.defectalisman.com/examples/cpanel.rar I recommend using that one as I have debugged it a little more and it uses on function instead of separate ones. The error you are getting is more than likely exactly what it says, you are not using the object that you...
  17. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Lets take bets on it shall we ? I am willing to put 100 credits on Angel_Pie. Whos got my bet ? EDIT Which one is he using ? The version I modded last or the one that you are using ?
  18. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Well I am sure that post wouldn't be where it is without those markers of 1k, 2k, 3k and so on :p @tnl: you mean rmdir() throws an error cause it contains files. You would call unlink() with a loop on all the files in the directory. if ($dir = opendir('../path/')) { while...
  19. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    Thinking about it, you could make a pac man game using JS and CSS only(albeit not that good). The score and its history could use php and MySQL :p
  20. DefecTalisman

    !!!! The NEW Biggest thread !!!!

    You program OOP or just standard ? Whilst you still getting to grips with the language try and move over to OOP(Object Orientated Programming). Its the proffered practice for most programming and will put you in good stead for other languages.
Top