A simple PHP function that returns the zodiac sign according to day and month.
-
Click to select it.
<?php
function zodiac($day, $month) {
// returns the zodiac sign according to $day and $month ( https://coursesweb.net/ )
$zodiac = array('', 'Capricorn', 'Aquarius', 'Pisces', 'Aries', 'Taurus', 'Gemini', 'Cancer', 'Leo', 'Virgo', 'Libra', 'Scorpio', 'Sagittarius', 'Capricorn');
$last_day = array('', 19, 18, 20, 20, 21, 21, 22, 22, 21, 22, 21, 20, 19);
return ($day > $last_day[$month]) ? $zodiac[$month + 1] : $zodiac[$month];
}
// 15 - October
echo zodiac(15, 10); // Libra
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which attribute specifies the HTTP method (GET, POST) used to submit the form-data?
action method value<form action="script.php" method="post"> ... </form>
Which CSS property allows to add shadow to boxes?
background-image box-shadow border-radius#id {
background-color: #bbfeda;
box-shadow: 11px 11px 5px #7878da;
}
Which function removes the first element from an array?
pop() push() shift()var fruits = ["apple", "apricot", "banana"];
fruits.shift();
alert(fruits.length); // 2
Indicate the function that can be used to check if a PHP extension is instaled.
function() filetype() extension_loaded()if(extension_loaded("PDO") === true) echo "PDO is available."