You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
297 B
13 lines
297 B
<?php
|
|
require_once("../conn.php");
|
|
|
|
$sql = "SELECT * FROM account WHERE accountid = 'M0225'";
|
|
$stmt = $conn->prepare($sql);
|
|
$stmt->execute();
|
|
$result = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
|
|
// echo '<pre>';
|
|
// print_r(json_encode($result));
|
|
// echo '</pre>';
|
|
|
|
return json_encode($result);
|
|
|