Tag Archives: PHP

PHP First Program

Syntax PHP echo Syntax See the below table to get the opening and closing tags of php Opening Tag Closing Tag <?php ?> <? ?> <script language=’php’> </script> PHP echo The echo statement insert text into a web page. It is the common statement in php. We can echo a statement using following types Single Quotes Double […]

PHP Array Functions

Function Example OR Syntax array_change_key_case array_chunk array_combine array_count_values array_diff array_diff_key array_diff_assoc array_diff_uassoc array_diff_ukey array_fill array_filter array_flip array_intersect array_intersect_assoc array_intersect_key array_intersect_uassoc array_keys array_key_exists array_map array_merge array_multisort array_pop array_push array_rand array_replace array_reverse array_search array_shift array_slice array_splice array_sum array_unique array_unshift array_values current, next, prev, end end sort in_array

PHP Variables And Constant

What is Variable? Rules For Variable Variable Types Constant Predefined Variables What is Variable? PHP6 introduce 64bit integer A variable is a representation of particular value. Simplay we can call this “containers” for storing information. By assinging a value to variable, you can reference the variable in other places in your script and we can change […]