错误:“注意:未定义的索引:第 8 行 C:\wamp\www\digi\admin\config\setup.php 中的页面”
我的代码是:
<?php
#setup document
//host-username-password-database_name
$db = mysqli_connect('localhost','root','','dynamic');
if($_GET['page'] == "")
{$pg = 'home';}
else
{$pg = $_GET['page'];}
include('/functions/sandbox.php');
include('/functions/template.php');
$page_title = get_page_title($db,$pg);
?>