Posts
Showing posts from February, 2018
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>
Real Stunts By Tom Cruise Mission: Impossible Fallout Paramount Pictures
- Get link
- X
- Other Apps
PHP Conditional Statements by YAAK Developers
- Get link
- X
- Other Apps
PHP Conditional Statements by YAAK Developers Very often when you write code, you want to perform different actions for different conditions. You can use conditional statements in your code to do this. In PHP we have the following conditional statements: -if statement - executes some code if one condition is true -if...else statement - executes some code if a condition is true and another code if that condition is false -if...elseif....else statement - executes different codes for more than two conditions -switch statement - selects one of many blocks of code to be executed
About PHP by YAAK Developers
- Get link
- X
- Other Apps
What is a PHP File? - PHP files can contain text, HTML, CSS, JavaScript, and PHP code. - PHP code are executed on the server, and the result is returned to the browser as plain HTML. - PHP files have extension ".php". What Can PHP Do? - PHP can generate dynamic page content. - PHP can create, open, read, write, delete, and close files on the server. - PHP can collect form data. - PHP can send and receive cookies. - PHP can add, delete, modify data in your database. - PHP can be used to control user-access. - PHP can encrypt data.
CSS Set the height and width of an element
- Get link
- X
- Other Apps
CSS Set the height and width of an element <!DOCTYPE html> <html> <head> <style> div { height: 200px; width: 600px; background-color: yellow; } </style> </head> <body> <h2>Set the height and width of an element</h2> <p>This div element has a height of 200px and a width of 600px:</p> <div></div> </body> </html>
CSS Using individual padding properties
- Get link
- X
- Other Apps
CSS Using individual padding properties <!DOCTYPE html> <html> <head> <style> div { border: 2px solid black; background-color: lightblue; padding-top: 60px; padding-right: 40px; padding-bottom: 60px; padding-left: 90px; } </style> </head> <body> <h2>Using individual padding properties</h2> <div>This div element has a top padding of 60px, a right padding of 40px, a bottom padding of 60px, and a left padding of 90px.</div> </body> </html>
Indian Star Tortoise Eating His Favorite Meal (Tomatoes)
- Get link
- X
- Other Apps
HTML Form Element
- Get link
- X
- Other Apps
HTML Form Element <!DOCTYPE html> <html> <body> <form action="/submit_page.php"> <select name="Codes"> <option value="yaak">Yaak</option> <option value="developers">Developers</option> <option value="coding">Coding</option> <option value="html">Html</option> </select> <br><br> <input type="submit"> </form> </body> </html>
Simple HTML Form Page
- Get link
- X
- Other Apps
Simple HTML Form Page <!DOCTYPE html> <html> <body> <form action="/submit_page.php"> First name:<br> <input type="text" name="firstname" value="YAAK"> <br> Last name:<br> <input type="text" name="lastname" value="Developers"> <br><br> <input type="submit" value="Submit"> </form> <p>If you click the "Submit" button, the form-data will be sent to a page called "/sumbit_page.php".</p> </body> </html>
Dil Diyan Gallan Journey of Baba Hardevsingh Ji Maharaj
- Get link
- X
- Other Apps