1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?PHP
-
-
-
-
-
- $host = "localhost";
- $basedatos = "techos";
- $user = "pablo.puig1";
- $passw = "9NA3kSExI2fGE6eV";
-
- try{
- $connection = mysqli_connect($host, $user, $passw, $basedatos) or $error = 1;
- }
- catch(Exception $ex){
- print("Error connecting to database: ". $ex->getMessage()) and die();
- }
-
-
-
-
- header('Content-Type: application/json');
-
- $encodedData=file_get_contents('php://input');
- $decodedData=json_decode($encodedData, true);
-
- $FindUID=$decodedData["FindUID"];
-
- $query= "SELECT UID, EID from joins";
- $stmt=mysqli_prepare($connection, $query);
- mysqli_stmt_execute($stmt);
-
- mysqli_stmt_bind_result($stmt, $uid, $eid);
-
- while(mysqli_stmt_fetch($stmt)){
-
- $response[] = array("uid"=>$uid, "eid"=>$eid);
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- echo json_encode($response);
-
-
-
-
- ?>
|