Skip to content

Instantly share code, notes, and snippets.

@youcoldfusion
Last active February 4, 2025 20:24
Show Gist options
  • Save youcoldfusion/ae361d92cd0adc113630 to your computer and use it in GitHub Desktop.
Save youcoldfusion/ae361d92cd0adc113630 to your computer and use it in GitHub Desktop.
Array in PHP Sample COde
<?php
$age = array(
"Animesh"=>"28",
"danimesh"=>"23",
"canimesh"=>"25");
//print_r ($age);
foreach ($age as $key=>$value) {
echo "key:::$key,Value::: $value";
}
?>
@youcoldfusion
Copy link
Author

ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment