Skip to content

Instantly share code, notes, and snippets.

View amitjoc's full-sized avatar
🇮🇳
Focusing

Er. Amit Joshi amitjoc

🇮🇳
Focusing
  • India
View GitHub Profile
@amitjoc
amitjoc / associativeArray.php
Last active October 2, 2023 15:40
Php Sample Assosicative Array
<?php
$associativeArray = array(
"name" => 'Amit Joshi',
"age" => 25,
"email" => 'amitjoshi@test.com'
);
?>
<!doctype html>
<html>
<head>
<title>Basic Empty HTML Page</title>
<meta name="description" content="first page">
<meta name="keywords" content="html tutorial template">
</head>
<body>
Content goes here.
</body>