Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

finance products
wwwstores
domain names

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!




An array_push and arary_pop example

This example demonstrates the array_push and array_pop example

<html>
<body>
<?php
$sites = array("Google", "yahoo" ,"programmershelp");
print_r ($sites);
print "<br>";
array_push($sites, "microsoft","bbc");
print_r($sites);
print "<br>";
array_pop($sites);
print_r($sites);
?>
</body>
</html>