php-string-basics-tutorial

php-string-basics-tutorial

PHP String Basics: Complete Beginner’s Guide with Examples PHP String Basics Strings are nothing but collection of alphabets,letters.By using this letter we can form a words and sentences.These words or sentences are called as string.In php we are writing the these words or sentences in single or double quotation marks then only php threated as … Read more

php-array-manipulation-functions-part-2

PHP Array Manipulation Functions Part 2 with practical examples

Array manipulation functions in php-part2 Some functions are discussed already.now in this part 2 series we can see remaining array functionsnin php. 1.rsort() 2.asort() 3.ksort() 4.array_slice() 5.array_splice() 6.array_search() 7.in_array() 8.array_unique() 9.array_keys() 10.array_values() 11.count() rsort(): rsort() function in php is very useful.that function is used for sorting elements in descending order.element values are stored in indexed … Read more

PHP File Handling Functions: Read, Write, Open & Close Files with Examples

PHP File Handling Functions Read Write Open Close Files Tutorial

PHP File Handling Functions: Reading, Writing, Opening and Closing File Processing files concept is one of the important concepts in PHP.it is used to interact with a file on server.interacting means reading a file, writing a file,closing a file,opening a file .these are some actions performed on PHP for interaction.we are using some file functions … Read more

Looping Statements in PHP | For, While, Foreach Loops

php-looping-statements-tutorial

Repeating statement with iterators or looping statement Looping Statements in PHP | For, While, Foreach Loops These looping statement helps to repeat the statement until condition is satisfied.these looping statement are also called as repeating statement or loop statement, iterators.this looping statement reduces time and it helps to maintain code easy for the user .these … Read more

PHP Basics Tutorial: Accessing PHP, Variables, Data Types

PHP Basics Tutorial showing variables, data types, and sample applications for beginners.

PHP Programming for Beginners – Variables, Data Types & PHP Access PHP full is hypertext preprocessor.olden days php full form is personal home page but now more developments are arrived.thats why it changes to hypertext preprocessor. Php is used to design server based web pages.it makes connection to the home page to server by using … Read more