-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-search.php
42 lines (39 loc) · 1.52 KB
/
app-search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
include "conexion.php";
$userN = $_POST['userName'];
if(!empty($userN)){
$query = "SELECT * from usuario where nombre_usuario = '$userN'";
$resp = mysqli_query($conectar,$query);
if($resp) {
$json = array();
while($respuesta = $resp->fetch_array()){
$json[] = array(
'user_name' => $respuesta['nombre_usuario'],
'name' => $respuesta['Nombre'],
'middleName' => $respuesta['Apellido_p'],
'lastName' => $respuesta['Apellido_m'],
);
};
$jsonString = json_encode($json);
echo $jsonString;
}else {
echo "Algo salió mal";
}
// $query2 = "SELECT * from respuesta r, preguntas p, usuario u where r.nombre_usuario = u.nombre_usuario and r.id_p = p.id and r.nombre_usuario = '$userN'";
// $res = mysqli_query($conectar,$query2);
// if($res) {
// $json2 = array();
// while($response = $res->fetch_array()){
// $json2[] = array(
// 'id_pregunta' => $response['id_p'],
// 'titulo_pregunta' => $response['titulo'],
// 'respuesta' => $response['resp']
// );
// };
// $jsonString2 = json_encode($json2);
// echo $jsonString2;
// }else {
// echo "Algo salió mal";
// }
}
?>