You will learn how to create a simple PHP foul language filter function which uses a file containing foul words to replace them in the string of your choice with asterisks.
PHP Introduction PHP / Getting Started
PHP stands for PHP: Hypertext Preprocessor. PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
Redirect Visitors by Browser Language PHP / Navigation
One of the common feature of many websites is the "choose language" option, usually indicated with a list of flags.. so, with php is possible to give a professional touch to your web site letting php choosing which is your visitors' language as the choice is based on the default browser language used at that moment.
PHP Babysteps Tutorial PHP / Getting Started
PHP is a server-side scripting language for creating dynamic Web pages. It has a very elegant design, that is both easy to use and powerful. PHP stands for PHP: Hypertext Preprocessor. It is a server side, HTML embedded language like ASP, SSI etc.
PHP For Beginners - Free Courses from www.iTechCollege.com PHP / Getting Started
What is PHP? PHP is a computer scripting language, which is originally designed for creating dynamic web pages. PHP is an open-source language, used primarily for dynamic web content and server-side applications.
In this course, you will learn how to:
How to write to screen; Generate and Retrieve a query string; Use functions; Redirect a page; Show environment variables; How to use cookies in PHP; Include a page; How to connect to MySql database; PHP`s most advantage: create an image directly.
A HOWTO on Optimizing PHP PHP / General Development
PHP is a very fast programming language, but there is more to optimizing PHP than just speed of code execution. In this chapter, we explain why optimizing PHP involves many factors which are not code related, and why tuning PHP requires an understanding of how PHP performs in relation to all the other subsystems on your server, and then identifying bottlenecks caused by these subsystems and fixing them. We also cover how to tune and optimize your PHP scripts so they run even faster.
PHP for beginners PHP / Getting Started
PHP is a server-side, cross-platform, HTML embedded scripting language.This online manual is meant to serve as a place to start for people not familiar with PHP.
File System PHP / File Operations
One of the most useful features of a server side language is its ability to interface with the file system on the server that hosts the website. This feature clearly distinguishes the language from a client side language such as JavaScript. While JavaScript is sent down to the client's browser and is then interpreted on their computer, server side languages such as PHP are interpreted and resolved on the server, and only the end result is sent down to the client's browser. It is because of this fact that the language has the ability to interface with the files on the server. PHP has the ability to work with both text files and sophisticated database systems. This part of the tutorial discusses text files; we'll get into databases later.
Databases in PHP - MySQL in PHP PHP / Databases
Having studied database basics and taken a look at the Structured Query Language, it's time to dig in. Now we take a look at the use of MySQL in PHP.
Some PHP Functions You Must Know PHP / Functions
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.
Macronimous- Command Line Scripting in PHP PHP / General Development
PHP is a great language to develop web applications rapidly and economically. Many of us know this. But what many of us were unaware of is that PHP can also be run as a command line script like c, c++, java, etc.
PHP Loop Structures PHP / Getting Started
Being able to use any programming language, you need to have reaction to input. With PHP for instance, there are many ways to automate actions. Here are some of the control or loop structures available in PHP.
Passing JavaScript variables to PHP PHP / Miscellaneous
JavaScript is mainly used as a client side scripting language, while PHP is a server side technology. Unlike Java or ASP.Net, PHP doesn't have tools to make it work client side. That is why you need to combine JavaScript and PHP scripts to develop powerful web-applications.
Starting With PHP PHP / Getting Started
Functions, arrays, superglobals and much much more. PHP can seem like an extremely complex thing at first, but in this beginners tutorial you will learn the basics of this incredibly popular language, and hopefully understand enough to be able to keep on learning.
How to Bridge PHP and Java for Powerful Web Solutions PHP / General Development
Here's how to team up two of the most popular and powerful platforms for web development together. With the php-java bridge you can build classes and jar files in Java and call them and use their methods in PHP. Use the quick and easy PHP language to bring Java muscle to your web pages.