在 items.php 中
$filepath = mysql_real_escape_string($_GET['filepath']);
$name = mysql_real_escape_string($_GET['name']);
$type = mysql_real_escape_string($_GET['type']);
echo $name,$type;
echo '<td><a target=\"_blank\" href="'.$filepath.'" title=\"\">'.$filepath.'</a> ';
错误:
注意:未定义索引:名称
注意:未定义索引:类型
结果:images/ch1.pdf?name=number?type=Memo
我想从名称和类型中获取值。