Php-mysql Course

With the PHP code presented below you can calculate the age between date of birth and current day.
- See the comments in code.
<?php
// object with date of birth
$bday = new DateTime('15.10.1976');    // day.month.year (or: year-month-day)
$now = new DateTime('00:00:00');       // current date-time

// object with the difference between $now and $bday (y = year, m = month, d = day)
$diff = $now->diff($bday);

// output
echo sprintf('%d years, %d month, %d days', $diff->y, $diff->m, $diff->d);
// 37 years, 2 month, 4 days
?>
The following code is similar, calculates the age between two specified dates.
<?php
// object with date of birth
$bday = new DateTime('15.10.1976');    // day.month.year (or: year-month-day)

// object with another specified date (here: 2012-03-01)
$d2 = new DateTime('2012-03-01 00:00:00');

// object with the difference between $d2 and $bday (y = year, m = month, d = day)
$diff2 = $d2->diff($bday);

// output
echo '<br>'. $diff2->y .' years, '. $diff2->m .' month, '. $diff2->d .' days';
// 35 years, 4 month, 15 days
?>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
Calculate the Age in PHP

Last accessed pages

  1. PHP PDO - prepare and execute (9128)
  2. Ajax request when the page is closed (184)
  3. Multidimensional arrays and array functions (8649)
  4. Get and Modify content of an Iframe (32100)
  5. A simple script ActionScript 3 (4331)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (331)
  2. Read Excel file data in PHP - PhpExcelReader (124)
  3. The Four Agreements (97)
  4. PHP Unzipper - Extract Zip, Rar Archives (94)
  5. The Mastery of Love (89)
Chat
Chat or leave a message for the other users
Full screenInchide