Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created July 17, 2018 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpfiddle/8db9b31f476ffc583e025fd8f18f46e0 to your computer and use it in GitHub Desktop.
Save phpfiddle/8db9b31f476ffc583e025fd8f18f46e0 to your computer and use it in GitHub Desktop.
[ Posted by Muhammadali ] Code for asif
<?php
$months = array(
1 => 'Jan',
2 => 'Feb',
3 => 'March',
4 => 'April',
5 => 'May',
6 => 'June',
7 => 'July',
);
$currentMonth = (int)date('m');
$someVar = "123k";
echo $someVar;
echo (int)$someVar;
?>
<select>
<option value="">Select Month</option>
<?php foreach ($months as $key => $month): ?>
<option value="<?php echo $key; ?>" <?php echo $key == $currentMonth ? 'selected' : '' ?>><?php echo $month; ?></option>
<?php endforeach; ?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment