Posts
This Women Story made you inspired| Y Entertainment| Yash Dhagiya
- Get link
- X
- Other Apps
Right on Time| You are on Time| Y Entertainment| Yash Dhagiya
- Get link
- X
- Other Apps
Latest image of Mars taken by MCC
- Get link
- X
- Other Apps
Latest image of Mars taken by MCC Mars Colour Camera on-board Mars Orbiter Mission (MOM) captured this spectacular image of flood carved channel system of Kasei Valles on January 12, 2018. Kasei Valles is known to be largest outflow channel system on Mars extending more than 2400 km. The image is first one to be captured by MOM in the year 2018 and correspond to solar longitude (Ls) 113 on Mars. Thin cloud patches are also seen in the bottom portion of image corresponding to higher altitudes of Kasei Valles. Picture & Statement courtesy: ISRO Website
PHP - The if...else Statement
- Get link
- X
- Other Apps
PHP - The if...else Statement The if....else statement executes some code if a condition is true and another code if that condition is false. Syntax if (condition) { code to be executed if condition is true; } else { code to be executed if condition is false; } Example: <!DOCTYPE html> <html> <body> <?php $t = date("H"); if ($t < "20") { echo "nice day!"; } else { echo "good night!"; } ?> </body> </html>