:::| 目前位置圖示目前位置:首頁圖示回首頁 | 主功能頁圖示相關問答
檢查資料表是否存在

[日期]:2024/12/26  [瀏覽人數]:11

//檢查資料表是否存在

$sqlck = "SHOW TABLES LIKE :chktable";
$rdck = $link1->prepare($sqlck);
$rdck->execute( ['chktable'=>"procure" ] );
list($tbchk) = $rdck->fetch();
if ($tbchk<>"")
$ST_stprocure = 1;
else
$ST_stprocure = 0;