PHP String Functions Part 1 - English
PHP and MySQL Tutorials - English 25
-
1Simple Visitor Counter
-
PHP String Functions Part 1
-
3PHP String Functions Part 2
-
4File Upload Part 1
-
5File Upload Part 2
-
6Cookies Part 1
-
7Cookies Part 2
-
8Sessions
-
9MD5 Encryption
-
10Sending Email Part 1
-
11Sending Email Part 2
-
12Sending Email Part 3
-
13Display Images from a Directory
-
14User Login Part 1
-
15User Login Part 2
-
16User Login Part 3
-
17User Password Change Part 1
-
18User Password Change Part 2
-
19User Password Change Part 3
-
20User Registration Part 1
-
21User Registration Part 2
-
22User Registration Part 3
-
23User Registration Part 4
-
24User Registration Part 5
-
25User Registration Part 6
Outline:
PHP String Functions (Part 1) strlen(string) - This function counts total no of characters, including numbers and white spaces in the string mb_substr(string,starting_position,no_of_characters) - This function takes a specific character from a string and a range of no of characters preceeding it. explode("delimiter",string) -This function breaks down the string into a array. Delimiter is used to know from where to break string. implode(string,"delimiter") -This function joins the array into a string. Delimiter is used to know how to join array elements. nl2br() -This function prints the content in exactly same form as written. Used in case for breaking lines.
Assignment
Status: