edoc-doctor-appointment-system icon indicating copy to clipboard operation
edoc-doctor-appointment-system copied to clipboard

Found a vulnerability

Open bacskaicsaba91 opened this issue 1 year ago • 1 comments

patient/schedule.php

include("../connection.php");
$sqlmain= "select * from patient where pemail=?";
$stmt = $database->prepare($sqlmain);
$stmt->bind_param("s",$useremail);
$stmt->execute();
$result = $stmt->get_result();
$userfetch=$userrow->fetch_assoc();
$userid= $userfetch["pid"];
$username=$userfetch["pname"];`

Error: Warning: Undefined variable $userrow in /Applications/MAMP/htdocs/edoc/patient/schedule.php on line 47

Fatal error: Uncaught Error: Call to a member function fetch_assoc() on null in patient/schedule.php:47 Stack trace: #0 {main} patient/schedule.php on line 47

bacskaicsaba91 avatar Oct 14 '23 08:10 bacskaicsaba91

Code in that "patient/schedule.php" has been commented out, have you managed to get it to run?

xkiptoo avatar Nov 21 '23 15:11 xkiptoo