Created
January 2, 2015 00:13
-
-
Save ricardosiri68/99c31764dddbf3503fa8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $notap = 88; | |
| $notas_eval = array( | |
| 'Excelente!!!' => $notap <= 100, | |
| 'Muy Bien' => $notap >= 80, | |
| 'Esta Bien' => $notap >= 60, | |
| 'Te falta un poco' => $notap >= 40, | |
| 'No es suficiente' => $notap >= 30, | |
| 'Mal!!!' => $notap >= 20, | |
| 'Muy mal' => $notap < 20, | |
| ); | |
| $nota = array_search(true, $notas_eval); | |
| echo $nota; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment