This tutorial explains: Basic Rules, Receiving Non ASCII Characters with GET Method, Receiving Non ASCII Characters with POST Method, Receiving Non ASCII Characters in UTF-8, Decoding HTML Entities.
Non ASCII Characters with MySQL PHP / Databases
This tutorial explains: Storing Non ASCII Characters in Database, Transmitting Non ASCII Characters to the Server, MySqlUnicode.php - UTF-8 Sample Script.
Handling Non ASCII Characters PHP / Miscellaneous
This tutorial explains: What Is Localization / Internationalization?, Managing Characters in Web Based Applications, Character Traveling Paths, ASCII Characters in PHP Pages
Non ASCII Characters in HTML documents PHP / Miscellaneous
This tutorial explains: Basic Rules, French Characters in HTML Documents - UTF-8 Encoding, French Characters in HTML Documents - ISO-8859-1 Encoding, Chinese Characters in HTML Documents - UTF-8 Encoding, Chinese Characters in HTML Documents - GB22312 Encoding, Characters of Multiple Languages in HTML Documents.
Non ASCII Characters as String Literals PHP / Miscellaneous
This tutorial explains: Basic Rules, French Characters in String Literals - UTF-8 Encoding, French Characters in String Literals - ISO-8859-1 Encoding, Chinese Characters in String Literals - UTF-8 Encoding, Chinese Characters in String Literals - GB2312 Encoding, Characters of Multiple Languages in String Literals.
Working with forms in PHP PHP / Forms
One of the most popular ways to make a web site interactive is the use of forms. With forms you can have users register for different things, submit any information you can imagine, upload files, and all types of other things. In this tutorial, we will go through the basics of forms and how to handle the data that comes from those forms with PHP.
Interacting with Web Forms PHP / Forms
HTML forms are one of the key ingredients of any dynamic website because they can enable the users of a site to interact with it. Otherwise, websites are more or less static: They may be driven by a database and, therefore, regularly changing, but they look the same for each and every visitor. HTML forms can change that; therefore, using data from forms from within PHP is very important.
Checking Data PHP / General Development
This article discusses three basic steps that can be taken to avoid creating bad code: ensuring that you can trust your input by verifying the input you receive from users, manipulating that input data carefully, and providing the appropriate people with secure, reliable access to that data.
User-Friendly Forms in PHP PHP / Forms
In this tutorial I'll show you a way to make your forms more friendly with PHP, so users don't have to keep filling forms in if they make a mistake -- make your forms more friendly.
Input - Output String Functions PHP / Forms
This tutorial is showing some functions that you need to use for your inputing form (as text field, text area) because, it is not security to receive string datas and input them directly into your database.
Using Form PHP / Forms
Using forms in a web based application is very common. Most forms are used to gather information like in a signup form, survey / polling, guestbook, etc.
String in Php PHP / Getting Started
After integer.. maybe just after integer, strings are possibly the most important variable types in programming. Storing a bunch (series) of character as one variable. PHP give you alot of functions to manipulate and handle strings.You can think of string as an array of characters, and individuals characters can be accessed using the index of the character withing the string.