Warning: Undefined variable $kind in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $vers in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $kind in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $vers in /home4/wgate/public_html/include/checkfunpdo.php on line 662
:::| 目前位置圖示目前位置:首頁圖示回首頁 | 主功能頁圖示相關問答
檢查資料表是否存在

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

//檢查資料表是否存在

$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;