Last active
September 25, 2018 03:47
-
-
Save MubinSayed/849609c08465677ee6add86d7aab4134 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$books = array( | |
array( | |
"title" => "The C Programming Language", | |
"author" => "Brian Kernighan and Dennis Ritchie", | |
"available" => 19 | |
), | |
array( | |
"title" => "Learning Python", | |
"author" => "David Ascher and Mark Lutz", | |
"available" => 7 | |
), | |
array( | |
"title" => "Head First Java", | |
"author" => "Bert Bates and Kathy Sierra", | |
"available" => 13 | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment