Rooni commited on
Commit
7d1cf4c
·
verified ·
1 Parent(s): 748d92e

Create test.php

Browse files
Files changed (1) hide show
  1. test.php +9 -0
test.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ header('Content-Type: application/json');
3
+
4
+ $response = array(
5
+ 'success' => true
6
+ );
7
+
8
+ echo json_encode($response);
9
+ ?>