Skip to content

Instantly share code, notes, and snippets.

@MubinSayed
Last active September 25, 2018 03:47
Show Gist options
  • Save MubinSayed/849609c08465677ee6add86d7aab4134 to your computer and use it in GitHub Desktop.
Save MubinSayed/849609c08465677ee6add86d7aab4134 to your computer and use it in GitHub Desktop.
<?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