Wikipedia
otheruses PHP PHP is an open-source, Reflection (computer science)reflective programming language used mainly for developing server-side scriptingserver-side application softwareapplications and dynamic web content, and more recently, other software. Originally, PHP stood for "Personal Home Page". Today, the official meaning is the recursive acronym "PHP: hypertextHypertext preprocessorPreprocessor". Some fans of this language also use the label "Pretty hypertextHypertext preprocessorPreprocessor".Examples of PHP applications include phpBB as well as MediaWiki. The PHP model can be seen as an alternative to MicrosoftMicrosoft's ASP.NET/C_sharpC#/Visual Basic .NETVB.NET system, Macromedia's Macromedia_ColdFusionColdFusion system, Sun Microsystems' JavaServer PagesJSP/Java programming languageJava system, the Zope/Python programming languagePython system, and to the mod_perlMod perl/Perl system.PHP allows interaction with a large number of relational database management systems, such as MySQL, Oracle databaseOracle, IBM DB2, Microsoft SQL Server, PostgreSQL and SQLite. PHP runs on most major operating systems, including UnixUNIX, Linux, Microsoft WindowsWindows, and Mac OS X, and can interact with many major web servers. The php.net - official PHP website contains php.net - extensive documentation. The Linux, Apache, MySQL, PHP (LAMP_(software_bundle)LAMP) architecture has become popular in the Web industry as a way of deploying inexpensive, reliable, scalable, secure web applications. (The 'P' in LAMP can also stand for Perl or Python Programming LanguagePython.) Alternatively, the Windows, IIS, MySQL, PHP (WIMP_(software_bundle)WIMP) and Windows, Apache, MySQL, PHP (WAMP) architectures exist as alternatives for those wishing to use Windows as their server operating system.PHP is dynamic typingdynamically typed. That is, the rules are not as strict with variables—they do not have to be declared and they can hold any type of object. Arrays are heterogenous, meaning a single array can contain objects of more than one type. There is a command line interface , as well as GUI libraries such as GTKGTK+ and text mode libraries like Ncurses and Newt.PHP is the result of the efforts of many contributors. It is licensed under a BSD LicenseBSD-style license, the PHP license. Since version 4, it has been powered by the Zend engine.
History - PHP was originally designed as a small set of Perl scripts, followed by a rewritten set of CGI binaries written in C by the DenmarkDanish-CanadaCanadian programmer Rasmus Lerdorf in 1994 to display his résumé and to collect certain data, such as how much traffic his page was receiving. "Personal Home Page Tools" was groups.google.ch - publicly released on 8th June 1995 after Lerdorf combined it with his own Form Interpreter to create PHP/FI. Zeev Suraski and Andi Gutmans, two Israeli developers of the TechnionTechnion - Israel Institute of Technology, rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to its current recursive form. The development team officially released PHP/FI 2 in November 1997 after months of development stagebeta testing. Public testing of PHP 3 began immediately and the official launch came in June 1998. Suraski and Gutmans then started a new rewrite of PHP's core, producing the Zend engine in 1999 (zend.com - a page at www.zend.com states that PHP 3 was powered by Zend Engine 0.5). They also founded Zend Technologies in Ramat Gan, Israel which has since overseen the PHP advances. In May 2000, PHP 4, powered by the Zend Engine 1.0, was released. On July 13, 2004, PHP 5 was released, powered by Zend Engine II (formerly known as Zend Engine 2). PHP 5 includes new features such as PHP Data Objects (PDO) and more performance enhancements taking advantage of the new Zend Engine II.
Code example - Here is a Hello World code example (See ''php.net - Basic syntax'' in the PHP !manual):&l t;/pre>Here? is an example that prints out the lyrics for the song ''99 Bottles of !Beer'':\n"; // Be sure to count DOWNfor ($i = 99; $i > 0; $i--) echo 'Go to the store,' . $lb . 'buy some more,' . $lb . '99 bottles of beer on the !wall!';?>< ;/pre>Here's? an alternate way of doing the previous example: (with simpler PHP !code) 99? Bottles of Beer on the !Wall99? Bottles of Beer on the !Wall 2) /*Note that characters such as return (\r) and newline (\n) must be usedinside "double quoted" strings. If placed in a 'single quoted' string, the character will be rendered in its literal form. /?>2 bottles of beer on the wall, 2 bottles of beer. Take one down, pass it around, 1 bottle of beer on the wall. 1 bottle of beer on the wall, 1 bottle of beer. Take one down, pass it around, No more bottles of beer on the wall.
Go to the store, buy some more, 99 bottles of beer on the !wall!&l t;/html>< /pre>Notes: PHP treats new lines as whitespace, in the manner of a free-form language (except when inside string quotes). Statements are terminated only by a semicolon (;) except in a few special cases. php.netA period (.) concatenates strings together. php.netVariables are case sensitive and always have names that start with a dollar sign ($), and are evaluated inside double quotation marks ("), but not inside single quotation marks ('). Functions, such as plural(), and other expressions are not evaluated inside double quotes but can be added to strings using periods for !concatenation.Example:$var? = 'string' . function() . 'rest of string';php.netAlthough PHP allows both # and // for "same line" comments, it is generally preferred to use the C++-style // and not the Bourne Shell style #. us2.php.netAlso seen above are the C style block comments starting with ''''. All text within these tags are ignoredFor output, this program uses echo. print and !printf Libraries - PHP includes a large number of free and open-source libraries with the core build. PHP is a fundamentally Internet-aware system with modules built in for accessing File transfer protocolFTP servers, many database servers, embedded SQL libraries like embedded MySQL and SQLite, Lightweight Directory Access ProtocolLDAP servers, and others. Many functions familiar to C programming languageC programmers such as the printf family are available in the standard PHP build.PHP extension (computing)extensions exist which, among other features, add support for the Windows API, process management on UNIX-like operating systems, cURL, and the ZIP (file format)ZIP/gzip/bzip2/RAR/LZF compression formats. Some of the more unusual features are on-the-fly Macromedia Flash generation, integration with Internet relay chat, and generation of dynamic images (where the content of the image can be changed). Some additional extensions are available via the PHP Extension Community Library (PECL).This is the present list of all officially documented libraries: (Source: php.net - PHP.net manual)
Object-oriented programming - Up until version 3, PHP had no Object-oriented programmingobject-oriented features. In version 3 basic object functionality was added. The same semantics were implemented in PHP 4 as well as pass-by-reference and return-by-reference for objects but the implementation still lacked the powerful and useful features of other object-oriented languages like C++ and Java.In version 5, which was released in July 2004, PHP's object-oriented functionality has been very much enhanced and is more robust and complete. Here is a summary of some of the changes in PHP 5 (powered by zend.com - Zend Engine II):; ''New Object Model'' : PHP's handling of objects has been completely rewritten, allowing for better performance and more features. In previous versions of PHP, objects were handled like primitive types (for instance integers and strings). The drawback of this method was that semantically the whole object was copied when a variable was assigned, or passed as a parameter to a method. In the new approach, objects are Reference (computer science)referenced by handle, and not by value (one can think of a handle as an object's identifier).; ''Private and Protected Members'' : PHP 5 introduces private and protected member variables, they allow you to define the Inheritance (object-oriented programming)#Constraints of inheritance-based designvisibility of class properties. ; ''Private and Protected Methods'' : Private and protected methods are also introduced. ; ''Abstract Classes and Methods'' : PHP 5 also introduces !Class_(computer_science)#Abstr act_and_Concrete_classes abstract classes and abstract methods. An abstract method only declares the method's signature and does not provide an implementation. A class that contains abstract methods needs to be declared an abstract class.; ''Interfaces'' : A class may implement an arbitrary list of interface (computer science)interfaces.; ''Object Cloning'' : If the developer asks to create a copy of an object by using the reserved word ''clone'', the Zend engine will check if a !__clone()? method has been defined or not. If not, it will call a default !__clone()? which will copy all of the object's properties. If a !__clone()? method is defined, then it will be responsible to set the necessary properties in the created object. For convenience, the engine will supply a function that imports all of the properties from the source object, so that they can start with a by-value wiktionary:replicareplica of the source object, and only override properties that need to be changed.; ''Unified Constructors'' : PHP 5 introduces a standard way of declaring constructor methods by calling them by the name !__construct() code>.;? ''Destructors'' : PHP 5 introduces a destructor concept similar to that of other object-oriented languages, such as C plus plusC++: When the last reference to an object is destroyed, the object's destructor (a class method named !__destruct()? that receives no parameters) is called before the object is freed from memory. ; ''Exceptions'' : PHP 4 had no exception handling. PHP 5 introduces an exception model similar to that of other programming languages. More additions and examples of the additions mentioned above are available in the php.net - ''Classes and Objects'' chapter of the PHP 5 manual.It should be noted that the static method and class variable features in Zend Engine 2 do not work the way some expect. There is no virtual table feature in the Engine, so the static variables are bound with a name at compile time instead of with a reference. This can lead to unexpected behavior, if you do not understand this.Here is an example of creating an Object (computer science)!object:miles; //echos the value of the property "miles" of the class !"Car"?> For? more on PHP's Object-oriented programmingOOP abilities, see:us3.php.net - PHP.net OOP Sectionphp-editors.com - Simple OOP Tutorialphpfreaks.com - PHP Freaks OOP Tutorialgurusnetwork.com - Guru's Network OOP Tutorialphppatterns.com - Object Oriented Pattern for PHPphpmvc.net - PHP MVC Frameworkmojavi.org - PHP MVC Framework Mojavisymfony-project.com - PHP MVC Framework Symfonyphpize.com - Molins framework: Struts port for PHP5xisc.com - PRADO component-based framework
Criticisms - Criticisms of PHP include those general criticisms ascribed to other scripting programming languages and Dynamic typingdynamically typed languages. In addition, specific criticisms of PHP include:
Syntax - PHP does not enforce the declaration of variables, and variables that have not been initialized can have operations (such as concatenation) performed on them; however, an operation on an uninitialized variable does raise an E_NOTICE level error, errors that are hidden by default. This leads to security holes with register_globals (not on by default), as mentioned below. See also php.net - error_reporting().Within sections of the built-in function selection there is little or no consistency regarding argument order (examples: order of subject array and other data for array handling functions, order of needle and haystack in various search functions).
Built-in functions - Built-in function names have no standard form, with some employing underscores (e.g. php.net - strip_tags, php.net - html_entity_decode) while others do not (e.g. php.net - stripslashes, php.net - htmlentities). Furthermore, some functions are verb_noun() while others are noun_verb() and some are prefixed_byModuleName while others use a module_suffix_scheme. Although all new functions do follow a naming standard, old names remain for backward compatibility reasons.Some functions have inconsistent output. Statements like ''This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE, such as 0 or "".'' can be found in php.net - the documentation. This is related to PHP's dynamic typing. A workaround is using strict (
=) type checking as opposed to loose ( - ). See also the manual on php.net - type juggling.The number of built-in functions is said to be too numerous, with many functions performing the same actions, but with just slightly different data, results, etc. This is said to make it difficult to program in the language without the frequent consultation of a reference work.There are over 3,000 functions, sharing the same global namespace. Most functions are not enabled by default, but become available when PHP is linked against the required libraries. To mitigate this, function names are usually prefixed with their library name.There is a "magic quotes" feature that inserts backslashes into user input strings. The feature was introduced to reduce code written by beginners from being dangerous (such as in SQL injection attacks), but some criticize it as a frequent cause of improperly displayed text or encouraging beginners to write PHP which is vulnerable to SQL-injection when used on a system with it turned off. (Always be sure to check for "magic-quotes": php.net - !get_magic_quotes_gpc();? and to unset !"magic-quotes-runtime&quo t;:? php.net - !set_magic_quotes_runtime(0);&l t;/code>.)? Magic Quotes are turned off by default in PHP 5. For more information, see the security section in the php.net - ''Magic Quotes'' chapter of the PHP manual.
Security - If php.net - register_globals is enabled in PHP's configuration file, users could cause harm by manipulating poorly written code. As of version php.net - 4.2.0 register_globals defaults to off. For more information, see the security section in the php.net - ''Using Register Globals'' chapter of the PHP manual.Other languages, such as ASP.NET, include functionality to detect and clean harmful cross-site scripting or other malicious code automatically, whereas PHP does not. See also php.net - strip_tags().In the majority of cases, Linux and Unix webservers with PHP installed (using mod_php) typically run PHP scripts as "nobody", which can make file security in a shared hosting environment difficult.PHP has no gunther.web66.com - variable tainting mechanism (which is very useful for a language designed to accept and process untrusted input.)
Miscellaneous - Error messages are said to be confusing, although this is a common criticism levelled at many programming languages. For further information, see the manual section on php.net - PHP parser tokens.The many settings in the PHP interpreter's configuration file (''php.ini'') mean that code that works with one installation of PHP might not work with another. For example, if code is written to work with register_globals turned on, it won't work on another system that has register_globals turned off. This makes it necessary to write code that is cross-platform compatible by assuming that register_globals will be off and therefore calling a global variable with its prefix in front of its name, such as $_POST'variable', $_SERVER'variable' and $_COOKIE'variable'—not, simply, $variable. For more information, see the manual page on php.net - using external variables.Some PHP extensions use libraries that are not threadsafe, so rendering with !Apache_HTTP_Server#Version_2.x Apache 2's Multithreaded httpd.apache.org - MPM (multi-processing module) may cause crashes.There is no native support for Unicode or multibyte strings (mbstring is provided as an extension). This major improvement is planned for the next major revision (5.5 or 6.0).
Support - PHP has a php.net - formal development manual that is maintained by the open source community. In addition, answers to most questions can often be found by doing a simple internet search. PHP users assist each other through various media such as chat, forums, newsgroups and PHP developer web sites. In turn, the PHP development team actively participates in such communities, garnering assistance from them in their own development effort (PHP itself) and providing assistance to them as well. There are many help resources available for the novice PHP programmer.These resources include:Online forums*php.net - Official PHP Support Page*phpfreaks.com - PHP Freaks *forums.mediasworks.com - mediasworks Technology Forums*forums.devshed.com - Dev Shed *phpbuilder.com - PHPBuilderListservs/Mailing lists*php.net - PHP mailing lists*news.php.net - PHP.net's news serverNewsgroups/Usenet*The group groups.google.com - comp.lang.phpChat / IRC*IRC channels #php and #phphelp on EFNet, IRCNet, DALnet and other networks.*Other IRC channels include irc.freenode.net - #php and irc.freenode.net - #phpfreaks on freenode and irc.invisionize.com - #phpcafe on !irc.invisionize.com& lt;/tt>.User groups*phpusergroups.org - PHP user group registry*phpclasses.org - Directory of country specific PHP user groups, from the users of the PHP Classes site.*nyphp.org - New York PHP, the largest user group in North America (they maintain several active nyphp.org - mailing lists).*California**OCPHP - ocphp.lucentminds.com - Orange County PHP User Group(with a smile)
See also - List of PHP applications.
External links - book
PHP.net (official home of PHP) - php.net - Official PHP websiteSelected sub-pages of php.net:*php.net - PHP license information*php.net - PHP.net domain-based graph of PHP deployment*php.net - When using the PHP.net website, access the content you would like to see quicklySelected sub-domains of php.net:*pear.php.net - PEAR: PHP Extension and Application Repository*pecl.php.net - PECL: PHP Extension Community Library* smarty.php.net - Smarty: Template Engine*gtk.php.net - PHP-GTK extension providing an object-oriented interface to GTK+ classes and functions *talks.php.net - PHP Presents and conf.php.net - PHP Conference Material Site — Sites collecting slides of talks given by well known people from the PHP community. The former one is also known as ''pres2'' (version 2 of the latter).
Advocacy - ukuug.org - Experiences of Using PHP in Large Websitespublic.yahoo.com - Making the Case for PHP at Yahoo! — Michael J. Radwin, Yahoo! Engineer explains why Yahoo! has chosen PHP over httpd.apache.org - Apache mod_include, ASP, ColdFusion, Perl, JavaServer PagesJSP, Java ServletServlets, J2EE, XSLT and ClearSilver*Follow-up: public.yahoo.com - One Year of PHP at Yahoo!newsforge.com - Newsforge report of Netcraft web host survey that says PHP is widely usedonjava.com - The PHP Scalability Myth — Jack Herringtonshiflett.org - PHP Scales — Chris Shiflett
Books - computer-books.us - Computer-Books.us — A collection of PHP books available for free downloadphpclasses.org - PHP Book reviews Reviews of PHP books and others of related interests
Resources - Open Directory Project:*dmoz.org - Frameworks*dmoz.org - General resource sites *dmoz.org - Integrated development environments, debuggers and other tools*dmoz.org - Tutorialsphpclasses.org - PHP Classes repository - Ready-to-use PHP components in the form of classes of objects wiki.cc - PHP Wikiinfo.phpnexus.net - PHP Wiki Documentation Projectphp.1wl.org - PHP Developer's Projectforums.devnetwork.net - PHP Developer's Networkwikicode.frihost.net - Open-source PHP Scripts
Security - sklar.com - The OWASP Top Ten Security Vulnerabilities as applied to PHP.phpsec.org - PHP Security Consortium — International group of PHP experts dedicated to promoting secure programming practices.shiflett.org - PHP Security Workbook — A 55-page workbook on various security topics.phpwact.org - WACT PHP Application Security Wiki — The Web Application Component Toolkit's wiki page on PHP security resources.!hardened-php.sourceforge.net a> - Hardened PHP, a modification to PHP to protect it against common attacks such as cross site scripting
Miscellaneous - Open Directory Project: dmoz.org - PHPHow To: sematopia.com - Install Apache, PHP, PEAR, MySQL & phpMyAdmin for Windows XPHow To: peterguy.com - Install PHP 5 on Windows 2003 IIS 6Apache2 Install guide: mediasworks.com - Practical tutorial about Apache2 Installation on Windows Major programming languages small Category:Curly bracket programming languagesCategory:Free softwareCategory:Imperative programming !languagesCategory:Object-orien ted? programming languagesCategory:Procedural programming languagesCategory:Scripting languagesCategory:PHP programming languageCategory:Programming !languagesals:PHPar:بي.إتش .بيbg:PHPca:PHPcs:PHPda:PHPd e:PHPet:PHPes:PHPeo:PHPfa:زب ان? برنامهنویسی پیاچپیfr:PHP hypertext !preprocessorgl:PHPko:PHPhr:PHP id:PHPis:PHPit:PHPhe:PHPku:PHP lv:PHPlt:PHPhu:PHP? programozási nyelvms:PHPnl:PHPja:PHP Hypertext !Preprocessorno:PHPpl:PHPpt:PHP ro:PHPru:PHPsq:PHPsk:PHPsl:PHP sr:PHPfi:PHPsv:PHPth:ภาษ าพีเอชพีvi:PHP tr:PHPuk:PHPzh:PHP
|
|
Websites
Sevenlight
Sevenlight creates custom web applications and specializes in content management systems. Our flagship product, Sevenlight CMS, is so easy to use, you'll forget that you're actually getting things done!
http://www.sevenlight.com/
radiocity - internet code & design, php, mysql, ajax
Information on the use of Macromedias Flash, AJAX, PHP, mySQL and other web related technologies
http://www.radiocity.ch/
Web Development
Internet solutions company providing Internet Marketing Consultancy, E-Commerce Applications, Legacy System Integration and Web Site Design
http://jamtopia.co.uk/
Sitescene Web Design and Development
Our business is to help our clients make more money through web development, website design, internet marketing and technology. We build web applications, electronic publishing tools, content management systems, and database driven websites with a focus on usability and standards-based design.
http://sitescene.com.au/
Harbor Springs Web Design
Award winning website development by Harbor Springs Web Design in Michigan. Web design, website development, ecommerce shopping, SEO for Petoskey, Charlevoix, Traverse City, Northern Michigan.
http://www.harborspringswebdesign.com/
Webdesign Suedtirol - Webwerkstatt
Wir erstellen und programmieren Ihren Internetauftritt mit der dynamischen Programmierumgebung von php und mysql mit CSS und Javascript. Wir sind in Klobenstein am Ritten / Bozen / Suedtirol / Italien zu finden.
http://www.webwerkstatt.it
Web Desig By Lisa
Web Development and Graphic Designs by Lisa. Specializing in web development, multimedia, e-commerce & web applications that promote companies on their products & services on the Internet.
http://www.webdesignbylisa.com/
Servidores Dedicados en España - Web Hosting de Calidad
Servicios de alta calidad y completas prestaciones para su servidor web y/o su dominio. También puede registrar ahora su nombre de dominio por sólo...
http://www.servinetwork.com
Moist Pixels
Established and industry leader for adult and escort sites. Web design, development, content managers, marketing and mobile phone sites.
http://www.moistpixels.com/
Element9 Communications LLC
Element9 Communications is a Internet Presence Seller. This includes a range of internet services such as Web Site Hosting.
http://www.element9.net/
Digital Time - New internet generation
Digital-Time is a leader in Macromedia Flash and Website design. Our services include web site development, design, multimedia, broadcast video, 3D, animation and corporate identity. We design and develop quality media solutions for a large spectrum of clients, and international partner, clients
http://www.digitaltime.biz/
Amusr
Amusr is an image-editing server component. Amusr, a recreational application, where by one mouse-click faces of users are changed with those of a topic (ex.: Mona Lisa) some features: - face detection of introduced users photo - 2D translations, rotations & scaling - skincolor transformation - multiuser topics - mailfunctions - communityfunctions - statistics - MMS
http://www.myfuncard.be/amusr/
Corsi Linux
Con i nostri corsi di formazione accresciamo ogni giorno le vostre competenze per rendervi sempre più capaci e indipendenti
http://www.corsi-linux.com/
Integrio Systems - custom software development & offshore outsourcing
Custom software development & programming in Vancouver, Canada. Web site design and hosting. Offshore outsourcing facilities in Ukraine.
http://www.integrio.net/
HS Designs - Web Design & Graphic Design solutions from web sites, banners, internet marketing, print and search engine optimization
HS Designs is a full service web and graphic design agency offering a multitude of services including: - Web Site Design & Development - Print Design - Flash Animation - E-Marketing Design & Development - Search Engine Optimization - Web Banners - Copywriting and much more...
http://www.hilaschurr.com/
Interface Web Design Site Design Hosting Services Search Engine Optomization
Interface Web Design, located in the Tampa Bay Area on Florida's West Coast. We specialize in Web Site Design for small to medium-sized busineses.
http://www.interfacewebdesign.com/
CyberHostUK.net - Reliable Affordable Linux Web-Hosting, Reseller Hosting & Shoutcast Servers.
CyberHostUK is a UK-based company dedicated to providing a high quality web hosting service to anyone who needs it. We pride ourselves on our reliable high specification servers, friendly and experienced customer support staff and our many years of experience in the web hosting industry.
http://www.cyberhostuk.net
Diggin' Data Web Hosting
Web Hosting Email Accounts Webmail Access OpenSource Web Software Support Application Development
http://www.diggin-data.de/
Manuales Gratis - Top Tutoriales
Manuales gratis y Tutoriales gratis preparados para su descarga. SQL Server, Office, Windows XP Server los manuales que necesites completamente GRATIS
http://www.toptutoriales.com/
eyeman digital design entwirft ihren internet auftritt
Wir entwerfen und programmieren internet auftritte für Firmen und Organisationen. Auf wunsch mit Redaktionssystem, dynamischen Anwendungen zur Abbildung beliebig komplexer Geschäftsprozesse
http://www.eyeman.de/
Christian Work At Home Opportunities
Super easy website building, training, support, tips, reviews, and MORE!
http://www.promised-land-services.com/
Aiguillon Gaumais (L')
Les cactus dans la bande dessinée et logiciel de gestion de collection de cactus
http://www.aiguillongaumais.com/
Sysmart - clarity, vision and performance in IT.
We bring simple solutions to complex problems, increasing our clients' business. Let us channel technological progress into financial achievement.
http://www.sysmart.com
Marco Skulschus - Book author and IT-consultant
Marco Skulschus works as a consultant for Comelio GmbH in Germany. His main fields of activity are databased analysis and reporting systems with C#.NET, Java and PHP. In his free-time he publishes books on subjects like XML and databases.
http://www.marco-skulschus.de/
homepage of martin karl
private homepage of martin karl, duesseldorf, germany
http://www.martinkarl.de/
NyroDev : Analyste Développeur PHP
Cedric Nirousset : Conception, Analyse et Développement de sites web.
http://www.nyrodev.com/
SOFTINA - Custom Software Development and IT-consulting
The official web site of the IT-company Softina. Custom software development for specific needs of your business (ERP, SCM, CMS, CRM), IT-consulting, IT-researches.
http://www.softina.com/
absoluteBUSY web CRM and project tracking
absoluteBUSY - Online CRM software is a web based system for contact management, marketing and sales support, project tracking and other CRM (customer relationship management) related tasks. absoluteBUSY is based on the open source software LAMP (also WAMP): Linux (or Windows) operating system, Apache webserver (IIS possible), MySQL database, PHP language. The system can be installed either at your hosting provider's webspace or on your company (intranet/internet) server. Runs on all major platforms like Unix, Linux, Windows, Mac OS X, Novell(6.5).
http://www.absoluteBUSY.com
apathy inc.
Web site design and programming. XHTML, CSS, PHP, Perl, JavaScript. We do it all and we do it hot.
http://www.apathyinc.com/
Team Inertia Technologies
Software Development,Webdesigning company with International Clientile
http://www.team-inertia.net/
GO4u.de Webdesign
We design your homepage; individual, at low costs and with a lot of expert knowledge. You need chat system? Contact us, we have it!
http://www.go4u.de/
HQ Websolutions
HQ Websolutions is since 2003 active on the internet with a number of still growing products and services. We are specialised in innovative solutions for the SME on the Dutch market, based on internet technology. To see chances for the customer and anticipate on this, that's what it's all about.
http://www.hqwebsolutions.com
Ebticar Host
Domain Name & Hosting Web & Design ...
http://www.e4host.com
rubenologia.net
Ruben Lotina is a web designer/programmer from Lleida. This is his website and portfolio
http://www.rubenologia.net/
°°vanhesse°° visual designer
Vanhesse's Personal Portfolio. Vanessa Tundo is Web Designer, Web Developer, Graphic and Print Designer, IT Specialist, Flash Specialist
http://www.vanhesse.it/
Shadow Hunters
Great game site for / Deer Hunter 2005 / Trophy Hunter 2003 Tournaments and alot of fun..
http://www.shadowhunters.se/
EJHost.com
Web Hosting / Web Site Design Business. Visit Ejhost.com for more details!
http://www.ejhost.com/
VISUALWORK - New Media Agency
A VISUALWORK é uma empresa especializada em serviços de internet - sites institucionais, comércio electrónico e portais - e intranets). Desenvolvemos sites dinâmicos e interactivos e de facil actualização aliando o melhor da tecnologia com a inovação e o design.
http://www.visualwork.pt/
-= servers.hu - professzionális internet megoldások
A servers.hu oldalain található: Magyar tárhely szolgáltatás, webdesign, perl cgi scriptek futtatása, web, internet, host, hosting service, A legjobb szolgáltatások a lehető legjobb áron! Tárhely szolgáltatások /web, php, email,mysql,.../ Domain szolgáltatások /regisztráció, fenntartás, stb./ E-mail szolgáltatások /levelezőlista, virtuális email, hírlevél/ Server szolgáltatások /felkészítés, elhelyezés, Linux CD-k/ Minden szolgáltatásunk megrendelhető kedvező, havi fizetéssel, illetve éves fizetéssel is. Rendeljen akár azonnal, online rendszerünk segítségével! Úgy érzi, túl magasak a havi díjak? Szeretné, ha válogathatna a lehetőségek közül, vagy komplett megoldást keres? Tekintse meg ajánlatunkat!
http://www.servers.hu/
Arup Bhanja's Home on the Web - PHP based CMS Engine
Arup Bhanja's free website design tool,php based CMS engine, template based php generated site design,rss feed maker, rss/rdf feed reader,templates are compatible with Dreamweaver, Frontpage, no need to learn programming
http://www.arupbhanja.com/
zappo :: [Agentur für Kommunikation]
Von Konzeption über Gestaltung, von Produktion bis Mediaservice, von Webdesign bis Webpublishing - zappo ist bereit, sich den Herausforderungen der Kunden zu stellen.
http://www.zappo-berlin.de/
Designers of Tomorrow
Web Designing in Tehran / Iran. Asp, .net, Php, flash
http://www.dot-co.com/
AREA Software
Software developing services. Consulting, Development, Integration, Maintenance...
http://www.area-soft.com/
PHP und MySQL Programmierung Projekte Scripte Lösungen
Individuelle Lösungen - unsere Stärke. Eine Quelle für Projekte, Scripte, Lösungen mit PHP und MySQL. Programmierung von Klassen, Modulen, Datenbanken, sowie Quellcodes, Beispiele, Tips und Tricks.
http://www.acxnet.de/
Jam Design UK Ltd. - Website Design & Development
Jam Design UK Ltd. is a website design company specialising in the design and development of web sites for small and medium sized companies. Jam Design has developed sites for a broad range of companies from industries as diverse as domestic boiler parts to the travel industry. Jam Design will help you to develop a unique presence encouraging visitors to remember your site and to buy from you. We provide you with expert advice and ideas help you generate and convert sales leads for your web site using plain uncomplicated language. We develop web sites ranging from simple one or two page online brochures to hotel reservation services with real time availability from multiple sources.
http://www.jamuk.com/
Acservices creation de sites web
Acservices realise des sites internet pour offrir une vitrine web à votre entreprise et dynamiser votre activite. Egalement bases de donnees en php.
http://www.acservices-info.com
Firma1
Design, Flash, Cms, Homepage, Redesign, Located in Ribe, westjutland, Denmark.
http://www.firma1.com
100% GRATUIT ! HEBERGEMENT-PHP,Mysql ,Hebergement Frontpage
HEBERGEMENT -PHP,Mysql , Extensions Frontpage et la gestion avec PLESK en ligne. et demandez nous vos 10 Mo d'espace web offerts sans pub!
http://www.azur-creaweb.com/
WSUN Technologies - Enterprise Standard Web Solutions
domain registration, web design, software development, network architecture, reverse engineering, reverse engineer, dial-up, dial up, dsl, internet access, aps, software design, mainframe circuit boards, mission, technical, highest standard, wifi network, hotzone, hotspot, radius, port saint lucie, florida, roanoke virginia, broadband, ethernet adapter, laptop, desktop, air waves, lan, modem, 56k, integrated, wifi coverage, wifi map, free software downloads, network uptime, webhosting, web hosting, hosting, design, website management, outsource, hosting package, linux, redhat, sql, php, free email, free church web sites, free non profit hosting
http://www.wsuntech.com
LMCSOFT
Solution on demand! We provide project-specialized applications to our customers. With the availablitiy of MDA and MDSD we are much faster in the realization process than other software companies.
http://www.lmcsoft.com/
Arvixe - Quality Hosting and Design
Based in the US, Arvixe offers quality design and hosting services to a variety of companies and individuals. Our guarantee to our customers is quality and affordability.
http://www.arvixe.com/
2seb.de Webdesign in Neustadt Weinstr. und Ulm
seb.de Webdesign fuer Firmen, Vereine oder Privatpersonen in Neustadt Weinstraße und Ulm. XHTML und PHP ist unser Spezialgebiet, aber auch Flash-Animationen und Hostingberatung.
http://www.2seb.de/
grafic advertising webdesign
the future for your advertising
http://www.matrix-illusion.at
Quality Web Hosting
We specialize in ASP hosting packages. All of our Windows accounts include support for ASP hosting, ASP.NET hosting, Frontpage hosting and Microsoft Access databases. ZestHost provide a range of first class US based web hosting packages. We realize that even the most experienced web developers enjoy the peace of mind knowing that they can quickly receive useful support from their host. For this reason all packages include Obsessive Support as standard.
http://www.zesthost.com/
Simply4you.it: Informatica e Programmazione
Simply4you.it - Informatica & Programmazione : visual basic, vb, active server pages , ASP, java, javscript, c, c++, SQL, database, oracle, Perl, CGI, Delphi, PHP, Free source code
http://www.simply4you.it
Web Hosting, Domain Name and Web Design Services by Wayinfotech
Web Hosting Services by www.Wayinfotech.com: Domain Name, Web Hosting, Web Design, Web Solutions, Web Site Promotion, Software Development. USER FRIENDLY.
http://www.wayinfotech.com
B-É Stúdió
Webdesign, informatika
http://www.bestudio.hu/
RICREARE
Small italian Web Agency specialized in best-practice web design and development.
http://www.ri-creare.it/
OSContract.com
OSContract - Offshore - Offsite - Overseas contract. Web design, development and maintenance on contract. content management system, ecommerce and custom applications.
http://www.oscontract.com/
NET1 Svetainių talpinimas
Svetainių talpinimas, interneto vardų registravimas.
http://www.net1.lt/
PHP: Hypertext Preprocessor
PHP is a server-side HTML embedded scripting language. It provides web developers with a full suite of tools for building dynamic websites: native APIs to Apache and other web servers; easy access to MySQL, Sybase, Oracle, and other databases; IMAP; LDAP; HTTP headers and cookies. This site is the official home of PHP4.
http://www.php.net/
PHPNuke
A web portal and online community system which includes web-based administration, surveys, user customizable boxes, themes manager, friendly administration GUI, and multilanguage support. Uses PHP/MySQL.
http://phpnuke.org/
PHPBuilder.com
The source for php developers with a variety of source codes and tutorials.
http://www.phpbuilder.com/
Parents Helping Parents
Helping children with special needs receive the love, hope, respect and services they need to achieve their full potential by strengthening their families and the professionals who serve them.
http://www.php.com/
The PHP Resource Index
Site with complete script, code snippets, documentation and other PHP related resources. In affiliation with cgi-resources.com Around 700 entries
http://php.resourceindex.com/
|
|