Hello World
Hello World
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 | |
| require_once 'db_function.php'; | |
| $db = new DB_Functions; //define in db_function.php line 5 | |
| //json response | |
| $response = array("error"=>FALSE); | |
| if (isset($_POST['email']) && isset($_POST['password'])) | |
| { | |
| //receiving the post ( parameter ) |
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 | |
| require_once 'db_function.php'; | |
| $db = new DB_Functions; //define in db_function.php line 5 | |
| //json response | |
| $response = array("error"=>FALSE); | |
| if (isset($_POST['email']) && isset($_POST['password'])) | |
| { | |
| //receiving the post ( parameter ) |
NewerOlder