Skip to content

Instantly share code, notes, and snippets.

@AucT
Created November 28, 2022 11:53
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 AucT/d5b22ac05460ae8137c30757a52cc9d6 to your computer and use it in GitHub Desktop.
Save AucT/d5b22ac05460ae8137c30757a52cc9d6 to your computer and use it in GitHub Desktop.
php echo selected / checked if equal
<?php
function echoIfEqual($value1, $value2, $echoText) {
if ($value1 == $value2) echo $echoText;
}
function echoIfEqualChecked($value1, $value2) {
echoIfEqual($value1, $value2, 'checked');
}
function echoIfEqualSelected($value1, $value2) {
echoIfEqual($value1, $value2, 'selected');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment