User-submitted PHP Projects

29
1426 reads

February 22, 2013

Creating a multidimensional array


an array inside an array is called multidimensional array
38
1367 reads

February 22, 2013

Using sort to alphabetize


sort() function will sort the array in ascending order.
175
2119 reads

February 22, 2013

Counting the elements in an array


Counting the elements in an array using count() function
39
1453 reads

February 22, 2013

Displaying the contents of an array using a loop


Display the Contents of an array using a loop
34
1503 reads

February 22, 2013

Displaying one value from an array


Getting Specific output from the array
49
1655 reads

February 22, 2013

Using function to create an array


Using the array function to create an array of weekdays.
25
1402 reads

February 21, 2013

Error if the file does not exist


The error you will get is due to the missing file. If file is present it will not give you the error for file.
38
1337 reads

February 21, 2013

Using include_once to include a file


include_once removes the error caused by include if we include the same file twice or more than twice.
31
1447 reads

February 21, 2013

Error if we include twice the same file


Error if we include the same file twice.