What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Do you have any projects?

Do you have any projects?
Author: Message:
bach_m
Veteran Member
*****

Avatar
4837 :P

Posts: 2863
Reputation: 7
37 / Male / –
Joined: Feb 2003
O.P. Do you have any projects?
Since i'm sorta bored, and feeling productive (but not enuff to write my essay), i want to know what some projects you guys (and gals) are working on right now.

It might be a program you're writing (perhaps in C, VB, etc), a website, or a web aplication (in PHP, ASP etc) that you are making (such as KeyStrom's avatar thingy).

or maybe you could make a request of something you'd like to see, such as a PHP script that might come in handy for you, or anything.

or maybe just a program/script that you've seen on a website that you find interesting/useful and you think might help benifit the community.

let your creative juices flow.




heres mine, to start it off. its in PHP, and lists the files in a directory.

code:
<?php
if ($handle = opendir('.')) {
  while (false !== ($file = readdir($handle))) {
      if ($file != "." && $file != "..") {
          echo "$file\n";
      }
  }
  closedir($handle);
}
?>


to exclude files, such as index.php as in the example. just add them to this line:
code:
if ($file != "." && $file != ".." && $file != "index.php") {




lets see what you guys have!
05-16-2004 03:29 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Do you have any projects? - by bach_m on 05-16-2004 at 03:29 PM
RE: Do you have any projects? - by TedoDude on 05-16-2004 at 03:35 PM
RE: Do you have any projects? - by Stigmata on 05-16-2004 at 03:52 PM
RE: Do you have any projects? - by fluffy_lobster on 05-16-2004 at 03:54 PM
RE: Do you have any projects? - by Mnjul on 05-16-2004 at 03:55 PM
RE: Do you have any projects? - by fluffy_lobster on 05-16-2004 at 03:56 PM
RE: Do you have any projects? - by TedoDude on 05-16-2004 at 04:13 PM
RE: Do you have any projects? - by KeyStorm on 05-16-2004 at 04:15 PM
RE: Do you have any projects? - by lylesback2 on 05-16-2004 at 04:16 PM
RE: Do you have any projects? - by KeyStorm on 05-16-2004 at 04:23 PM
RE: Do you have any projects? - by Tochjo on 05-16-2004 at 05:22 PM
RE: Do you have any projects? - by Vazza on 05-16-2004 at 05:55 PM
RE: Do you have any projects? - by dotNorma on 05-16-2004 at 05:57 PM
RE: Do you have any projects? - by GiantSpider on 05-16-2004 at 06:28 PM
RE: Do you have any projects? - by CodeChaos on 05-16-2004 at 06:39 PM
RE: Do you have any projects? - by Guido on 05-16-2004 at 07:35 PM
RE: Do you have any projects? - by matty on 05-16-2004 at 07:48 PM
RE: Do you have any projects? - by Banks on 05-17-2004 at 12:09 AM
RE: Do you have any projects? - by Dempsey on 05-17-2004 at 10:50 AM
RE: Do you have any projects? - by saralk on 05-17-2004 at 08:38 PM
RE: Do you have any projects? - by fluffy_lobster on 05-18-2004 at 07:44 AM
RE: Do you have any projects? - by Choli on 05-18-2004 at 09:53 AM


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