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 :

gambling sites
software directory
golfing products

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 example of array_push

this is an example demonstarting the array_push function

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

?>
</body>
</html>