SQL PHP HTML ASP JavaScript articles and free scripts to download
   

PHP array adding or pushing elements or parameters

We can add element ( parameters ) to an array at the end. We can also add a set of elements to the array. Any time we can check the number of elements in an array by using array count command. 
We will first create an array like this

$stack = array (1, 2);

array_push ($stack,3,4,5,6);  // we are adding four more elements to the array

echo count($stack);
// displaying total number of elements inside the array , that is 6 here







Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked


Join Our Email List
Email:  
For Email Newsletters you can trust
Array Functions
PHP Sections