Home

Submit

Source

Feeds

Home » PHP » Getting Started ::

PHP Getting Started
Strings are probably what you will use most in your PHP script. From concatenating, looking for patterns, trim, chop etc.
Related Tutorials
PHP Getting Started
PHP Strings Primer
PHP / Getting Started
In order to accomplish almost any programming task with PHP you'll be dealing with strings. To get the best out of PHP you must thoroughly understand the basic string functions available. In this tutorial we will lay down the foundations needed for a solid understanding of strings.

Site: codewalkers.com Report - View Tutorial

PHP General Development
PHP Script Tips - Understanding String Literals and Operations
PHP / General Development
A collection of 14 tips on PHP string literals, operations and conversaion. Clear explanations and tutorial exercises are provided on single-quoted strings, double-quoted strings, string elements, concatenation, converting values to strings, converting strings to values.

Site: dev.fyicenter.com Report - View Tutorial

PHP Getting Started
Query Strings (index.php?section=page)
PHP / Getting Started
Learn how to create query strings.

Site: www.xiodestudios.com Report - View Tutorial

PHP Getting Started
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.

Site: phptutorialsite.com Report - View Tutorial

PHP Security
md5() Hashing Using PHP
PHP / Security
One of the many ways of hashing data using PHP is a function called md5(). md5() converts a string of text into a 32-character hash, using a secret algorithm, thus protecting the original source information. md5() hashed strings cannot be dehashed either, which presents us with the novel problem of working out if two md5-hashed strings are equal. The answer is actually quite simple. Take a login system - instead of dehashing the string and comparing it to a regular password, you take the hashed string and compare it to a string that has already been hashed! Sounds simple doesn't it?

Site: biorust.com Report - View Tutorial

PHP Sessions and Cookies
Cookies
PHP / Sessions and Cookies
Learn how to add and play around with cookies.Setting and playing around with cookies is a fun and useful way to save data on a user's hard drive, and can successfully store valuable information which may be helpful the next time they come to the site.

Site: www.spoono.com Report - View Tutorial

PHP Getting Started
PHP, The Nitty Gritty: Lesson 1
PHP / Getting Started
This is an introductory article on PHP programming. Some of main topics covered include: Variables, Strings, Arrays, Comparison Operators, and Control Structures.

Site: www.abriasoft.com Report - View Tutorial

PHP Getting Started
Variables
PHP / Getting Started
A variable is a holder for a type of data. So, based on its type, a variable can hold numbers, strings, booleans, objects, resources or it can be NULL.

Site: www.webcheatsheet.com Report - View Tutorial

PHP Getting Started
PHP Variables and Strings
PHP / Getting Started
A nice tutorial on What a Variable and String are, the purpose of a Variable and a String and an Example for both a Variable and a String.

Site: www.codingcollege.com Report - View Tutorial

PHP Miscellaneous
Managing Non ASCII Character Strings
PHP / Miscellaneous
This tutorial explains: "mbstring" Extension, "mbstring" Functions, "mbstring" Basic Tests, HTTP Input and Output Encoding.

Site: www.herongyang.com Report - View Tutorial

PHP Emailing
Building an Opt-in Email List
PHP / Emailing
This helpful tutorial shows you how to build an opt-in email list in PHP. It covers validating email addresses, checking for duplicate email addresses, adding to a mailing list, and changing a strings case.

Site: www.php-scripts.com Report - View Tutorial

PHP Getting Started
Using Type Juggling/Type Casting to Modify Data Types
PHP / Getting Started
We're going to be dealing with type juggling in this article. This is the process of instructing PHP how to handle the value after the type juggling. Type juggling can do absolutely all sorts, from converting integers to floats, arrays to objects, and even strings to binary as of PHP 5.2.1. It can also save you calling various functions and thus making your script quicker.

Site: www.talkphp.com Report - View Tutorial

PHP Getting Started
PHP and MySQL - Introduction
PHP / Getting Started
The topics covered in this tutorial include: * PHP basics, including script structure, variables, supported types, constants, expressions, and type conversions * Condition and branch statements supported by PHP, including if, if...else, and the switch statements * Looping statements * Arrays and array library functions * Strings and string library functions * Regular expressions * Date and time functions * Integer and float functions * How to write functions, reuse components, and determine the scope and type of variables * An introduction to PHP object-oriented programming support * Common mistakes made by programmers new to PHP, and how to solve them.

Site: www.brainbell.com Report - View Tutorial

 
Site Search

 
Categories
2D Graphics 3D Graphics Office Applications Databases Desktop Programming Web Development
 
Advertisement