-2
這是我的PHP代碼頁---PHP查詢與HTTP錯誤結束500
<?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();
?>
當我使用URL訪問的頁面 -
http://www.mywebsitename.com/[email protected]
然後我收到以下錯誤
本頁面無法正常工作
www.mywebsite name.com目前無法處理此請求。
HTTP錯誤500
請幫助。 PHP代碼有什麼錯誤。
@Arun .... thnx編輯問題 –
誰給-1票。你想要更多的研究。如果你不能幫助,那麼也不要隨意投票 –