Skip to content

Commit

Permalink
Merge pull request #1820 from bgoonz/master
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz authored Mar 11, 2022
2 parents 73d30ea + 4d94036 commit ac06eee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
) {
dayNum = 31;
} else if ( ( month === 'April' ) | ( month === 'June' ) | ( month === 'September' ) | ( month ===
'November' ) ) {
'November' ) ) {
dayNum = 30;
} else {
// If month is February, calculate whether it is a leap year or not
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

// The global $_POST variable allows you to access the data sent with the POST method by name
// To access the data sent with the GET method, you can use $_GET
$say = htmlspecialchars($_POST['say']);
$to = htmlspecialchars($_POST['to']);
// The global $_POST variable allows you to access the data sent with the POST method by name
// To access the data sent with the GET method, you can use $_GET
$say = htmlspecialchars($_POST['say']);
$to = htmlspecialchars($_POST['to']);

echo $say, ' ', $to;
echo $say, ' ', $to;

0 comments on commit ac06eee

Please sign in to comment.