Created
May 22, 2021 12:40
-
-
Save ibrahim4851/d66892ae74b72e863b59d555ff7d7441 to your computer and use it in GitHub Desktop.
PostPHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$value = $_POST["value"]; | |
$jsondata = '{ | |
"value": "request successfull" | |
}'; | |
if ($id != null) { | |
echo($jsondata); | |
} | |
else{ | |
echo("null value"); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment