├── PHP ├── Add doubles.php ├── Assignment_Operators.php ├── Foreach_loop.php ├── Logical_Operators.php ├── Switch_statement.php ├── add_num_range.php ├── arithmetic operators.php ├── array_problems.php ├── associative array.php ├── car array.php ├── comparison-operators.php ├── constant.php ├── function_parameter.php ├── global_scope.php ├── if_elseif_else_contitions.php ├── image │ ├── YouTube.png │ ├── download.png │ ├── drive.png │ ├── github-old.png │ ├── github.png │ ├── githubw.png │ ├── googlelogo_color_272x92dp.png │ ├── images.jpeg │ ├── vj.png │ ├── w3schools.jpg │ ├── youtube-1024x841.png │ ├── youtube.png │ └── youu.png ├── local scope.php ├── multi-demensional array.php ├── numeric pyramid.php ├── numeric_array.php ├── php_functions.php ├── questionmark_Operators.php ├── static_variable(Scope).php └── vj web.php └── README.md /PHP/Add doubles.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | doubles 8 | 9 | 10 | 16 | 17 | -------------------------------------------------------------------------------- /PHP/Assignment_Operators.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Assignment Operators 5 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |

Assignment_Operators

17 |

a = 42 ; b = 20

18 | "; 24 | 25 | $c += $a; /* c value was 42 + 20 = 62 */ 26 | echo "Add AND Assigment Operation Result: $c
"; 27 | 28 | $c -= $a; /* c value was 42 + 20 + 42 = 104 */ 29 | echo "Subtract AND Assignment Operation Result: $c
"; 30 | 31 | $c *= $a; /* c value was 104 - 42 = 62 */ 32 | echo "Multiply AND Assignment Operation Result: $c
"; 33 | 34 | $c /= $a; /* c value was 62 * 42 = 2604 */ 35 | echo "Division AND Assignment Operation Result: $c
"; 36 | 37 | $c %= $a; /* c value was 2604/42 = 62*/ 38 | echo "Modulus AND Assignment Operation Result: $c
"; 39 | ?> 40 |
41 | 42 | 43 | -------------------------------------------------------------------------------- /PHP/Foreach_loop.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Foreach_Loop 8 |

Foreach_Loop

9 | 10 | 11 | 12 | 13 | 14 | "; //use Var_dump to get the datatypes 19 | } 20 | ?> 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /PHP/Logical_Operators.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Logical Operators 6 | 11 | 12 | 13 |

Logical Operators

14 | 15 |

a = 42 ; b = 0

16 | 17 |
18 | "; 24 | }else{ 25 | echo "TEST1 : Either a or b is false
"; 26 | } 27 | 28 | if( $a and $b ) { 29 | echo "TEST2 : Both a and b are true
"; 30 | }else{ 31 | echo "TEST2 : Either a or b is false
"; 32 | } 33 | 34 | if( $a || $b ) { 35 | echo "TEST3 : Either a or b is true
"; 36 | }else{ 37 | echo "TEST3 : Both a and b are false
"; 38 | } 39 | 40 | if( $a or $b ) { 41 | echo "TEST4 : Either a or b is true
"; 42 | }else { 43 | echo "TEST4 : Both a and b are false
"; 44 | } 45 | ?> 46 |

a = 10 ; b = 20

47 | 48 | "; 54 | }else { 55 | echo "TEST5 : a is false
"; 56 | } 57 | 58 | if( $b ) { 59 | echo "TEST6 : b is true
"; 60 | }else { 61 | echo "TEST6 : b is false
"; 62 | } 63 | 64 | if( !$a ) { 65 | echo "TEST7 : a is true
"; 66 | }else { 67 | echo "TEST7 : a is false
"; 68 | } 69 | 70 | if( !$b ) { 71 | echo "TEST8 : b is true
"; 72 | }else { 73 | echo "TEST8 : b is false
"; 74 | } 75 | ?> 76 |
77 | 78 | -------------------------------------------------------------------------------- /PHP/Switch_statement.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Switch_statement 8 | 9 |

check the day with Switch_statement

10 | 11 | 12 | 13 | 14 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /PHP/add_num_range.php: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /PHP/arithmetic operators.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Arithmetical Operators 5 | 11 | 12 | 13 | 14 | 15 | 16 |

Arithmetic_Operators

17 |
18 | 19 | "; 24 | 25 | $c = $a + $b; 26 | echo "Addition Operation Result: $c
"; 27 | 28 | $c = $a - $b; 29 | echo "Substraction Operation Result: $c
"; 30 | 31 | $c = $a * $b; 32 | echo "Multiplication Operation Result: $c
"; 33 | 34 | $c = $a / $b; 35 | echo "Division Operation Result: $c
"; 36 | 37 | $c = $a % $b; 38 | echo "Modulus Operation Result: $c
"; 39 | 40 | $c = $a++; 41 | echo "Increment Operation Result: $c
"; 42 | 43 | $c = $a--; 44 | echo "Decrement Operation Result: $c
"; 45 | ?> 46 |
47 | 48 | 49 | -------------------------------------------------------------------------------- /PHP/array_problems.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | array_Problems 8 | 9 | 10 | "; 13 | $a = array(0,1,2,3,4 ); 14 | 15 | echo $a[3]; 16 | 17 | echo "
"; 18 | echo "
"; 19 | echo "solution for 2nd problem"; 20 | echo "
"; 21 | 22 | 23 | $a = array( "zero"=>0, "one"=>1, "two"=>2, "three"=>3, "four"=>4 ); 24 | 25 | echo $a['three']; 26 | 27 | echo "
"; 28 | echo "
"; 29 | echo "solution for 3rd problem"; 30 | echo "
"; 31 | 32 | 33 | $a = array( 34 | array(0,1), 35 | array(2,array(3)) 36 | ); 37 | 38 | echo $a[1][1][0]; 39 | 40 | echo "
"; 41 | echo "
"; 42 | echo "solution for 4th problem"; 43 | echo "
"; 44 | 45 | 46 | $a = array( 47 | "a"=>array( 48 | "b"=>0, 49 | "c"=>1 50 | ), 51 | "b"=>array( 52 | "e"=>2, 53 | "o"=>array( 54 | "b"=>3 55 | ) 56 | ) 57 | ); 58 | 59 | echo $a['b']['o']['b']; 60 | 61 | echo "
"; 62 | echo "
"; 63 | echo "solution for 5th problem"; 64 | echo "
"; 65 | 66 | 67 | $a = "a,b,c,d,e,f"; 68 | print_r(explode(",",$a)); 69 | 70 | echo "
"; 71 | echo "
"; 72 | echo "solution for 6th problem"; 73 | echo "
"; 74 | 75 | 76 | $array = array("a","b","c","d","e"); 77 | 78 | $keyasvalue = array_combine($array , $array); 79 | 80 | 81 | print_r($keyasvalue); 82 | 83 | echo "
"; 84 | echo "
"; 85 | echo "solution for 7th problem"; 86 | echo "
"; 87 | 88 | 89 | $keys = array( 90 | "field1"=>"first", 91 | "field2"=>"second", 92 | "field3"=>"third" 93 | ); 94 | 95 | $values = array( 96 | "field1value"=>"dinosaur", 97 | "field2value"=>"pig", 98 | "field3value"=>"platypus" 99 | ); 100 | 101 | 102 | /*$keysandvalues = array( 103 | $keys['field1'] => $values['field1value'], 104 | $keys['field2'] => $values['field2value'], 105 | $keys['field3'] => $values['field3value'] 106 | 107 | );*/ 108 | 109 | $keys2 = (array_values($keys)); 110 | $values2 = (array_values($values)); 111 | 112 | $keysandvalues = array_combine($keys2,$values2); 113 | 114 | print_r($keysandvalues); 115 | 116 | 117 | echo "
"; 118 | echo "
"; 119 | echo "solution for 8th problem"; 120 | echo "
"; 121 | 122 | 123 | $transactions = array( 124 | array( 125 | "debit"=>2, 126 | "credit"=>3 127 | ), 128 | array( 129 | "debit"=>15, 130 | "credit"=>14 131 | ) 132 | ); 133 | foreach($transactions as $value){ 134 | //print_r($value['debit'] . "
"); 135 | //print_r($value['credit'] . "
"); 136 | $value2['amount']= $value['credit'] - $value['debit']; 137 | //echo $value['amount']. "
"; 138 | 139 | /*$array = array( 140 | "debit" => $value['debit']."
", 141 | "credit" => $value['credit']."
", 142 | "amount" => $value2['amount']."
" 143 | );*/ 144 | 145 | print_r(array_merge($value , $value2 )); 146 | echo "
"; 147 | //print_r($array); 148 | 149 | } 150 | 151 | 152 | 153 | echo "
"; 154 | echo "solution for 9th problem"; 155 | echo "
"; 156 | 157 | $a = array( 0, 1, 2, 3, 4, 5, 6 ); 158 | 159 | print_r(array_sum($a)); 160 | 161 | echo "
"; 162 | echo "
"; 163 | echo "solution for 10th problem"; 164 | echo "
"; 165 | 166 | $student_one = array("Maths"=>95, "Physics"=>90, 167 | "Chemistry"=>96, "English"=>93, 168 | "Computer"=>98); 169 | 170 | 171 | /* Looping through an array using foreach */ 172 | echo "Looping using foreach: \n"; 173 | foreach ($student_one as $subject => $marks){ 174 | echo "Student one got ".$marks." in ".$subject."\n"; 175 | 176 | } 177 | 178 | ?> 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /PHP/associative array.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | associative array 8 | 9 | 10 | 11 | 12 | 13 | 20000, "gopi" => 10000, "zara" => 500); 16 | 17 | echo "Salary of vj is ". $salaries['vj'] . "
"; 18 | echo "Salary of gopi is ". $salaries['gopi']. "
"; 19 | echo "Salary of zara is ". $salaries['zara']. "
"; 20 | 21 | /* Second method to create array. */ 22 | $salaries['vj'] = "high"; 23 | $salaries['gopi'] = "medium"; 24 | $salaries['zara'] = "low"; 25 | 26 | echo "Salary of vj is ". $salaries['vj'] . "
"; 27 | echo "Salary of gopi is ". $salaries['gopi']. "
"; 28 | echo "Salary of zara is ". $salaries['zara']. "
"; 29 | ?> 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /PHP/car array.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | car_rate 9 | 10 | 11 | array( 14 | "x5" => 79 , 15 | "z4" => 71 , 16 | "5 series" => 64 17 | ), 18 | 19 | 20 | "benz" => array( 21 | "a class" => 42, 22 | "b class" => 55, 23 | "e class" => 85 24 | ), 25 | 26 | "audi" => array( 27 | "Q2" => 35, 28 | "A4" => 43, 29 | "A6" => 59 30 | 31 | ) 32 | 33 | ); 34 | echo "the audiA4 least rate is :"; 35 | echo $car['audi'] ." lakhs"; 36 | ?> 37 | 38 | 39 | -------------------------------------------------------------------------------- /PHP/comparison-operators.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | comparison operator 8 | 9 | 10 | 16 | 17 | 18 |

comparison operator

19 |
20 | 21 | "; 27 | }else{ 28 | echo "Test1 : a is not equal to b
"; 29 | } 30 | 31 | if($a < $b) { 32 | echo "Test2 : a is less than b
"; 33 | }else{ 34 | echo "Test2 : a is not less than b
"; 35 | } 36 | 37 | if( $a < $b ) { 38 | echo "TEST3 : a is less than b
"; 39 | }else { 40 | echo "TEST3 : a is not less than b
"; 41 | } 42 | 43 | if( $a != $b ) { 44 | echo "TEST4 : a is not equal to b
"; 45 | }else { 46 | echo "TEST4 : a is equal to b
"; 47 | } 48 | 49 | if( $a >= $b ) { 50 | echo "TEST5 : a is either greater than or equal to b
"; 51 | }else { 52 | echo "TEST5 : a is neither greater than nor equal to b
"; 53 | } 54 | 55 | if( $a <= $b ) { 56 | echo "TEST6 : a is either less than or equal to b
"; 57 | }else { 58 | echo "TEST6 : a is neither less than nor equal to b
"; 59 | } 60 | 61 | ?> 62 |
63 | 64 | 65 | -------------------------------------------------------------------------------- /PHP/constant.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | php1 8 | 9 | 10 | "; 16 | echo constant("MINSIZE"); // same thing as the previous line 17 | 18 | ?> 19 | 20 | -------------------------------------------------------------------------------- /PHP/function_parameter.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | function_parameter 6 | 7 | 8 |

function parameter

9 | 10 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /PHP/global_scope.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | global_scope 8 | 13 | 14 | 15 |
16 | "; 28 | myTest(); 29 | echo "
"; 30 | myTest(); 31 | ?> 32 |
33 | 34 | -------------------------------------------------------------------------------- /PHP/if_elseif_else_contitions.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | if_elseif_else 6 | 7 |

if_elseif_else

8 | 9 |

Weekend day :

10 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /PHP/image/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/YouTube.png -------------------------------------------------------------------------------- /PHP/image/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/download.png -------------------------------------------------------------------------------- /PHP/image/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/drive.png -------------------------------------------------------------------------------- /PHP/image/github-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/github-old.png -------------------------------------------------------------------------------- /PHP/image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/github.png -------------------------------------------------------------------------------- /PHP/image/githubw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/githubw.png -------------------------------------------------------------------------------- /PHP/image/googlelogo_color_272x92dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/googlelogo_color_272x92dp.png -------------------------------------------------------------------------------- /PHP/image/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/images.jpeg -------------------------------------------------------------------------------- /PHP/image/vj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/vj.png -------------------------------------------------------------------------------- /PHP/image/w3schools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/w3schools.jpg -------------------------------------------------------------------------------- /PHP/image/youtube-1024x841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/youtube-1024x841.png -------------------------------------------------------------------------------- /PHP/image/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/youtube.png -------------------------------------------------------------------------------- /PHP/image/youu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VIJAYWHAT/PHP-codes/6668f5b94937e0803c0e19c86a82fd4142d7867a/PHP/image/youu.png -------------------------------------------------------------------------------- /PHP/local scope.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | local_scope 8 | 13 | 14 | 15 | 16 |

Local_Scope

17 | 18 |
19 | "; 25 | } 26 | 27 | num(); 28 | print " outside is $x.
"; 29 | ?> 30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /PHP/multi-demensional array.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | multi-demensional array PHP 8 | 13 | 14 | 15 |
16 | array ( 19 | "physics" => 84, 20 | "maths" => 96, 21 | "chemistry" => 82 22 | ), 23 | 24 | "ashraf" => array ( 25 | "physics" => 69, 26 | "maths" => 72, 27 | "chemistry" => 48 28 | ), 29 | 30 | "goushik" => array ( 31 | "physics" => 54, 32 | "maths" => 62, 33 | "chemistry" => 57 34 | ) 35 | ); 36 | 37 | /* Accessing multi-dimensional array values */ 38 | echo "Marks for vj in physics : " ; 39 | echo $marks['vj']['physics'] . "
"; 40 | 41 | echo "Marks for ashraf in maths : "; 42 | echo $marks['ashraf']['maths'] . "
"; 43 | 44 | echo "Marks for goushik in chemistry : " ; 45 | echo $marks['goushik']['chemistry'] . "
"; 46 | ?> 47 |
48 | 49 | -------------------------------------------------------------------------------- /PHP/numeric pyramid.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | pyramid 8 | 9 | 10 | "; 15 | for($j=1;$j<=$i ;$j++){ 16 | $print++; 17 | print $print ; 18 | } 19 | 20 | echo "
"; 21 | } 22 | 23 | 24 | 25 | ?> 26 | 27 | -------------------------------------------------------------------------------- /PHP/numeric_array.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Numeric array 8 | 9 | 10 | "; 16 | } 17 | 18 | // Second method to create array. 19 | $numbers[0] = "one"; 20 | $numbers[1] = "two"; 21 | $numbers[2] = "three"; 22 | $numbers[3] = "four"; 23 | $numbers[4] = "five"; 24 | 25 | foreach( $numbers as $value ) { 26 | echo "Value is $value
"; 27 | } 28 | ?> 29 | 30 | -------------------------------------------------------------------------------- /PHP/php_functions.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | php_function 8 | 13 | 14 | 15 | 16 |
17 | "; // set function how its print //first name given name ("...") print 30 | //then set name ..raja.. 31 | } 32 | 33 | familyName(""); 34 | familyName("Saratha"); 35 | familyName("Gopinath"); 36 | familyName("Vijay"); 37 | 38 | // function with year 39 | 40 | function Student($sname, $year) { 41 | echo "student name is $sname. Born in $year
"; 42 | } 43 | 44 | Student("vijay", "2005"); 45 | Student("ashraf", "2005"); 46 | Student("goushik", "2006"); 47 | 48 | // operation in function 49 | // function addNumbers(int $a, int $b) { 50 | // return $a + $b; 51 | // } 52 | // echo addNumbers(5, "5days"); 53 | // // since strict is NOT enabled "5 days" is changed to int(5), and it will return 10 54 | 55 | 56 | // // PHP Default Argument Value 57 | //declare(strict_types=1); // strict requirement 58 | function setHeight(int $minheight = 50) { 59 | echo "The height is : $minheight
"; 60 | } 61 | 62 | setHeight(350); 63 | setHeight(); // will use the default value of 50 64 | setHeight(135); 65 | setHeight(80); 66 | 67 | 68 | // function returings values 69 | 70 | //declare(strict_types=1); // strict requirement 71 | function sum(int $x, int $y) { 72 | $z = $x + $y; 73 | return $z; 74 | } 75 | 76 | echo "5 + 10 = " . sum(5, 10) . "
"; 77 | echo "7 + 13 = " . sum(7, 13) . "
"; 78 | echo "2 + 4 = " . sum(2, 4); 79 | 80 | //PHP Return Type Declarations 81 | 82 | // declare(strict_types=1); // strict requirement //here use the strict its throw all error because 52 error 83 | function numaddition(float $c, float $d) : float { //here use int output comes 6 84 | return $c + $d; 85 | } 86 | echo numaddition(1.2, 5.2); //output 6.4 87 | 88 | 89 | function addnum(float $e, float $f) : int { 90 | return (int)($e + $f); 91 | } 92 | echo addnum(1.2, 5.2) . "
"; //output 6 //float but the declaration is int so output comes 6 93 | 94 | // Passing Arguments by Reference 95 | function add_five(&$value) { 96 | $value += 5; 97 | } 98 | 99 | $num = 2; 100 | add_five($num) ; 101 | echo $num . "
"; //output 7 102 | 103 | echo sum(25,16) . "
"; 104 | 105 | echo familyName("hari"); 106 | 107 | ?> 108 |
109 | 110 | -------------------------------------------------------------------------------- /PHP/questionmark_Operators.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Arithmetical Operators 5 | 6 | 7 | 8 | 9 | $b ) ? $a :$b; 15 | 16 | echo "TEST1 : Value of result is $result
"; 17 | 18 | /* If condition is true then assign a to result otheriwse b */ 19 | $result = ($a < $b ) ? $a :$b; 20 | 21 | echo "TEST2 : Value of result is $result
"; 22 | ?> 23 | 24 | 25 | -------------------------------------------------------------------------------- /PHP/static_variable(Scope).php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Static_Scope 8 | 9 | 10 | "; 16 | } 17 | 18 | output(); 19 | output(); 20 | output(); 21 | ?> 22 | 23 | 24 | -------------------------------------------------------------------------------- /PHP/vj web.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Vj web 9 | 10 | 11 | 12 | 13 | 14 | 94 | 95 | 96 | 97 |

Page created in PHP

98 | 99 | 100 |
101 | 102 | 103 | 104 | image 105 | 108 |
109 |
110 | 111 |
112 | 126 | 127 |
128 | 129 | 130 | image 131 | 132 |
133 |
134 |
135 | 136 |
137 | 138 |
139 |
140 | 141 | 147 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PHP-codes 2 | its all my learning purpose code 3 | --------------------------------------------------------------------------------