我无法调用id形式的fuction页面,它显示错误

时间:2016-10-25 09:00:39

标签: php get web e-commerce

function.php

<a href = "details.php?pro_id='.$pro_id.'"><button type="button" class="btn btn-primary">View Detail</button> </a>

===========================================

details.php

if(isset($_GET(['pro_id'])){

$product_id = $_GET['pro_id'];
$get_pro = "select * from products where product_id='$product_id'";

$run_pro = mysqli_query($con, $get_pro);

它无法正常显示以下错误:

  

致命错误:无法对函数调用的结果使用isset()(您   可以使用&#34; null!== func()&#34;代替)   第52行的C:\ xampp \ htdocs \ Raj_Cassette \ details.php

1 个答案:

答案 0 :(得分:5)

$ _ GET不是一个功能。这是一个数组

$_GET(['pro_id'])

但是

$_GET['pro_id']