What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Help me please with script

Help me please with script
Author: Message:
absorbation
Elite Member
*****

Avatar

Posts: 3636
Reputation: 81
– / Male / Flag
Joined: Feb 2005
O.P. Help me please with script
Dempsey gave me this script to show how many soundpacks are in my soundpacks folder (on the site):


function count_files( $dir )
{
     $retval = 0;
     if( $dir && is_dir( $dir ) )
     {
          if( ($d = opendir( $dir )) !== false )
          {
               while( ($f = readdir( $d )) !== false )
               {
                    if( is_file( $dir . "/" . $f ) ) ++$retval;
               }
               closedir( $d );
          }
     }
     return $retval;
}

print count_files( "/soundpacks" );



I firstly dont get how to use php :$ and how to add it to my homepage. :(

Please, please help me :P
04-26-2005 06:04 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Help me please with script - by absorbation on 04-26-2005 at 06:04 PM
RE: Help me please with script - by Eljay on 04-26-2005 at 06:12 PM
RE: Help me please with script - by absorbation on 04-26-2005 at 08:46 PM
RE: Help me please with script - by segosa on 04-26-2005 at 09:05 PM
RE: Help me please with script - by absorbation on 04-26-2005 at 09:31 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On