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.
 
 
 
 
 
 

15 lines
375 B

<?php
header("Access-Control-Allow-Origin: https://bpm.masada.com.tw");
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($result);
// echo '</pre>';
echo json_encode($result, JSON_UNESCAPED_UNICODE);