Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.154.303 Times

Amy Rose Photography Contact Php freeware
Filter: All | Freeware | Demo
 

Amy Rose Photography Contact Php

< 1 2 3 4 5 > 
Added: July 03, 2010 | Visits: 1.845

PHP Generic Access Control List PHP Generic Access Control List is a PHP class that offers Web developers a simple, yet immensely powerful "drop in" permission system for their current Web-based applications..



Platforms: *nix

License: Freeware Size: 2.6 MB Download (103): PHP Generic Access Control List Download

Added: June 01, 2010 | Visits: 1.389

PHP Helpdesk PHP Helpdesk is an online helpdesk program for use in organizations with multiple sister companies or departments..





Platforms: *nix

License: Freeware Size: 174.08 KB Download (117): PHP Helpdesk Download

Added: July 08, 2010 | Visits: 2.220

VCL for PHP VCL for PHP is a PHP framework to help you build PHP web applications faster and easier than ever. This framework has been designed to provide visual design capabilities and its being used on Delphi for PHP. Whats New in This Release: - The code in this release is the same you can get when...


Platforms: *nix

License: Freeware Size: 2.2 MB Download (177): VCL for PHP Download

Added: October 19, 2010 | Visits: 2.444

Image Create for PHP Image Create for PHP is a project which allows you to render text into an image on the fly. Image Create for PHP is a stand-alone script that allows you to create dynamic text images easily.. Get PHP Development tools at SourceForge.net. Fast, secure and free downloads from the largest Open...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (221): Image Create for PHP Download

Added: April 03, 2010 | Visits: 951

Rose::Object::MakeMethods::Generic Rose::Object::MakeMethods::Generic is a Perl module that can create simple object methods. SYNOPSIS package MyObject; use Rose::Object::MakeMethods::Generic ( scalar => [ power, error, ], scalar --get_set_init => name, boolean --get_set_init => is_tall, boolean => [ is_red,...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (91): Rose::Object::MakeMethods::Generic Download

Added: June 04, 2010 | Visits: 1.474

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (98): Rose::DB::Object::Tutorial Download

Added: March 18, 2010 | Visits: 909

Rose::DateTime::Util Rose::DateTime::Util Perl module contains some simple DateTime wrapper functions. SYNOPSIS use Rose::DateTime::Util qw(:all); $now = parse_date(now); $then = parse_date(12/25/2001 11pm); print $now->day_of_week; # e.g., "Monday" # "December 25th 2001 at 11:00:00 PM" $date_text =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (89): Rose::DateTime::Util Download

Added: July 05, 2010 | Visits: 1.353

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: October 02, 2010 | Visits: 956

Rose::DB::Object::QueryBuilder Rose::DB::Object::QueryBuilder is a Perl module that can build SQL queries on behalf of Rose::DB::Object::Manager. SYNOPSIS use Rose::DB::Object::QueryBuilder qw(build_select); # Build simple query $sql = build_select ( dbh => $dbh, select => COUNT(*), tables => [ articles ], columns...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (95): Rose::DB::Object::QueryBuilder Download

Added: August 27, 2010 | Visits: 1.126

Rose::Class::MakeMethods::Set Rose::Class::MakeMethods::Set is a Perl module to create class methods to manage sets. SYNOPSIS package MyClass; use Rose::Class::MakeMethods::Set ( inheritable_set => [ required_name => { add_implies => add_valid_name, test_method => name_is_required, }, ], inherited_set => [...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (95): Rose::Class::MakeMethods::Set Download

Added: October 18, 2010 | Visits: 887

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (87): Rose::Object Download

Added: February 15, 2010 | Visits: 914

Rose::DateTime Rose::DateTime is a Perl module with DateTime helper functions and objects. SYNOPSIS use Rose::DateTime::Util qw(:all); $now = parse_date(now); $then = parse_date(12/25/2001 6pm); $date_text = format_date($then, "%D at %T %p"); ... use Rose::DateTime::Parser; $parser =...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Rose::DateTime Download

Added: May 06, 2010 | Visits: 828

Rose::URI Rose::URI is a standalone URI class allowing easy and efficient manipulation of query parameters and other URI components. SYNOPSIS use Rose::URI; $uri = Rose::URI->new(http://un:pw@foo.com/bar/baz?a=1&b=two+3); $scheme = $uri->scheme; $user = $uri->username; $pass = $uri->password;...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (99): Rose::URI Download

Added: November 09, 2010 | Visits: 926

Rose::HTML::Objects Rose::HTML::Objects is a Perl object-oriented interfaces for HTML. SYNOPSIS use Rose::HTML::Form; $form = Rose::HTML::Form->new(action => /foo, method => post); $form->add_fields ( name => { type => text, size => 20, required => 1 }, height => { type => text, size => 5, maxlength => 5...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (93): Rose::HTML::Objects Download

Added: June 22, 2010 | Visits: 1.257

Rose::HTML::Form Rose::HTML::Form is a HTML form base class. SYNOPSIS package PersonForm; use Rose::HTML::Form; our @ISA = qw(Rose::HTML::Form); use Person; sub build_form { my($self) = shift; $self->add_fields ( name => { type => text, size => 25, required => 1 }, email => { type => email, size...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (91): Rose::HTML::Form Download

Added: March 12, 2010 | Visits: 1.144

php.MVC Web Application Framework php.MVC implements the Model-View-Controller design pattern, and encourages application design based on the Model 2 paradigm. This design model allows the Web page or other contents (View) to be mostly separated from the internal application code (Controller/Model), making it easier for designers...


Platforms: *nix

License: Freeware Size: 460.8 KB Download (103): php.MVC Web Application Framework Download

Added: January 14, 2010 | Visits: 4.374

Auto Directory Index PHP Script AutoIndex is a PHP script that makes a table that lists the files in a directory, and lets users access the files and subdirectories. It includes searching, icons for each file type, an admin panel, uploads, access logging, file descriptions, and more..


Platforms: *nix

License: Freeware Size: 84.99 KB Download (371): Auto Directory Index PHP Script Download

Added: February 27, 2010 | Visits: 2.611

PHP Radius Accounting Tool PHP Radius Accounting tool is a report tool for use with freeradius and MySQL. PHP Radius Accounting Tool features: listing of users, bandwidth used up/down per user, number of logins, usage details, who is using most bandwidth, a list of stations (access points), which users use each access...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (197): PHP Radius Accounting Tool Download

Added: June 11, 2010 | Visits: 1.794

PHP PSD reader PHP PSD reader reads .PSD files (Adobe Photoshop Documents) using only PHP4 or PHP5 and GD. The project comes with imagecreatefrompsd (a function that returns an image handle just like the native PHP imagecreatefrom functions). It supports documents from Adobe Photoshop 3.0 up to version CS3,...


Platforms: *nix

License: Freeware Download (205): PHP PSD reader Download

Added: August 02, 2010 | Visits: 4.570

PHP Screw PHP Screw is a PHP script encryption tool. When you are developing a commercial package using PHP, the script can be distributed as encrypted up until just before execution, preserving your intellectual property.. Get PHP Screw at SourceForge.net. Fast, secure and free downloads from the largest...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (332): PHP Screw Download

< 1 2 3 4 5 >