PHP String Functions Part 1 - English
PHP and MySQL Tutorials - English 57
-
1
XAMPP in Windows -
2
XAMPP in Linux -
3
Echo Function -
4
Variables in PHP -
5
If Statement -
6
Switch Statement -
7
Arithmatic Operators -
8
Comparison Operators -
9
Logical Operators -
10
Arrays -
11
Multi Dimensional Arrays -
12
Loops While Statement -
13
Loops Do While Statement -
14
Loops For Statement -
15
Loops Foreach Statement -
16
Functions Basic -
17
Functions Advanced -
18
GET Variable -
19
POST Variable -
20
Embedding PHP -
21
Common Way to Display HTML -
22
Common Errors Part 1 -
23
Common Errors Part 2 -
24
Common Errors Part 3 -
25
MySQL Part 1 -
26
MySQL Part 2 -
27
MySQL Part 3 -
28
MySQL Part 4 -
29
MySQL Part 5 -
30
MySQL Part 6 -
31
MySQL Part 7 -
32
MySQL Part 8 -
33
Simple Visitor Counter -
PHP String Functions Part 1 -
35
PHP String Functions Part 2 -
36
File Upload Part 1 -
37
File Upload Part 2 -
38
Cookies Part 1 -
39
Cookies Part 2 -
40
Sessions -
41
MD5 Encryption -
42
Sending Email Part 1 -
43
Sending Email Part 2 -
44
Sending Email Part 3 -
45
Display Images from a Directory -
46
User Login Part 1 -
47
User Login Part 2 -
48
User Login Part 3 -
49
User Password Change Part 1 -
50
User Password Change Part 2 -
51
User Password Change Part 3 -
52
User Registration Part 1 -
53
User Registration Part 2 -
54
User Registration Part 3 -
55
User Registration Part 4 -
56
User Registration Part 5 -
57
User 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: