-2
我在MySQL中使用。但我無法打電話給程序。如何在php/mysqli中調用過程?
<?php
$mysqli = new mysqli("localhost", "user", "pass", "testDB");
$query = "SELECT * FROM testTable";
if ($result = $mysqli->query($query)) {
$row = $result->fetch_assoc();
header("Content-type: audio/mpeg");
echo $row['audioData'];
$result->free();
}
$mysqli->close();
?>
我沒有看到你調用任何程序? – Daan