Development Grounds - We Are Recruiting!

subota, 29.04.2006.

MassiveMails Newsletter Notes

Dear DG Visitors, we are proud to announce an very complex but yet fast project with PHP and MySQL.

It is called 'RC-FG-DG Newsletter' (which is also the Project Codename).
The product/application name is MassiveMails Newsletter (M.M. Newsletter).

The project began yesterday. We hoped to release it today but no luck.
It is going to be released tomorow, probably. We cannot surely say it becase is a big application, and also because it is Pico Day on Newgrounds. If you want to know more about it and you know Croatian then I'd rather suggest this link: http://www.mi3dot.org/news/comments/2771/.

We expect to relase it as Final. It is completely automated, you won't need to edit anything.

-Nino
- 21:56 - Comment (0) - Print - # - Top

utorak, 25.04.2006.

Directory Randomizer Released

Recruiting Grounds is proud to present the very first here released PHP Application - the Directory Randmomizer.

Level: Medium-Hard

THE SCRIPT

$dir = '../demo/'; //replace this

if ($open = opendir($dir)) {
$i = 0;
while ( ($get = readdir($open)) !== false) {
if ($get != "." && $get != "..") {
$i++;
$get_stuff[$i] = $get;
$randomize = array_rand($get_stuff);
}
}
closedir($open);
}
$basic_layout = $get_stuff[$randomize];
$layout = $get_stuff[$randomize];
$layout = str_replace("_", " ", $layout);
$layout = str_replace("-", " ", $layout);
$layout = explode(".", $layout);
$layout = $layout[0];
$layout = ucwords(strtolower($layout));

$to_be_output = $layout;

// echo it

echo $to_be_output;

//and we're done!
?>

NOTES:
As of PHP 5 you may use some FTP Wrappers. Means, you can use ftp:// URI's.

For instance, you can edit the first line with:

$dir = 'ftp://something.com';

You can also login with username and password (username@password). For more about that, check the FTP Wrappers pattern at php.net.
- 20:00 - Comment (0) - Print - # - Top

Started / Released

Welcome to the first day of Development Grounds - 'We Are Recruiting'.

Formely Recruiting Grounds
- 18:51 - Comment (0) - Print - # - Top

Sljedeći mjesec >>