这是我的php代码页---
<?php
session_start();
session_destroy();
session_start();
include 'config.php';
$uid=$_GET['uid'];
$_SESSION['uid']=$uid;
$stmt = $linkID1->prepare("select profile_pic from cae_users_picture where email=?");
$stmt->bind_param("s", $uid);
$stmt->execute();
$stmt->bind_result($profile_pic);
$stmt->fetch();
$stmt2 = $linkID1->prepare("select fullname,user_type from cae_users where email=?");
$stmt2->bind_param("s", $uid);
$stmt2->execute();
$stmt2->bind_result($fullname,$user_type);
$stmt2->fetch();
?>
当我使用网址访问页面时 -
http://www.mywebsitename.com/mypagename.php?uid=ravikumar@gmail.com
然后我收到以下错误
此页面无效
www.mywebsitename.com目前无法处理此请求 HTTP ERROR 500
请帮助。什么是PHP代码错误。
答案 0 :(得分:0)
最后我自己得到了解决方案。刚刚补充---
$stmt->close();
$stmt2->close();
两次查询后。 页面现在正常工作。