prepare("SELECT * FROM Candidate_Synthesis_Plan WHERE plan_id = ?"); $stmt->execute([$plan_id]); $plan = $stmt->fetch(PDO::FETCH_ASSOC); ?> Candidate Synthesis Plan Details

Candidate Synthesis Plan Details

Plan ID
Candidate ID
Conditions Document View Document
Synthesis plan not found.
Back to Candidate
Well Plates
prepare("SELECT wp.*, l.name as laboratory_name FROM Well_Plate wp JOIN Laboratory l ON wp.lab_id = l.lab_id WHERE wp.plan_id = ?"); $stmt_well_plate->execute([$plan_id]); $well_plates = $stmt_well_plate->fetchAll(PDO::FETCH_ASSOC); ?>
Well Plate ID Laboratory Name Incubation Start Incubation End Temperature Incubator ID Status
prepare("SELECT * FROM Sample_Well WHERE well_plate_id = ?"); $stmt_sample_well->execute([$well_plate['well_plate_id']]); $sample_wells = $stmt_sample_well->fetchAll(PDO::FETCH_ASSOC); ?>
Sample Wells
Sample ID Picture Solutions Solvents Catalysts Solids
Sample Well prepare("SELECT ws.*, s.name FROM Well_Solution ws JOIN Preprep_vial s ON ws.vial_id = s.vial_id WHERE ws.sample_id = ?"); $stmt_solutions->execute([$sample_well['sample_id']]); $solutions = $stmt_solutions->fetchAll(PDO::FETCH_ASSOC); foreach ($solutions as $solution) { echo htmlspecialchars($solution['name']) . ' (' . htmlspecialchars($solution['amount']) . ' ' . htmlspecialchars($solution['units']) . ')
'; } ?>
prepare("SELECT ws.*, s.name FROM Well_Solvents ws JOIN Solvent s ON ws.solvent_id = s.solvent_id WHERE ws.sample_id = ?"); $stmt_solvents->execute([$sample_well['sample_id']]); $solvents = $stmt_solvents->fetchAll(PDO::FETCH_ASSOC); foreach ($solvents as $solvent) { echo htmlspecialchars($solvent['name']) . ' (' . htmlspecialchars($solvent['amount']) . ' ' . htmlspecialchars($solvent['units']) . ')
'; } ?>
prepare("SELECT wc.*, c.name FROM Well_Catalysts wc JOIN Catalyst c ON wc.catalyst_id = c.catalyst_id WHERE wc.sample_id = ?"); $stmt_catalysts->execute([$sample_well['sample_id']]); $catalysts = $stmt_catalysts->fetchAll(PDO::FETCH_ASSOC); foreach ($catalysts as $catalyst) { echo htmlspecialchars($catalyst['name']) . ' (' . htmlspecialchars($catalyst['amount']) . ' ' . htmlspecialchars($catalyst['units']) . ')
'; } ?>
prepare("SELECT ws.*, s.name FROM Well_Solids ws JOIN Solid s ON ws.solid_id = s.solid_id WHERE ws.sample_id = ?"); $stmt_solids->execute([$sample_well['sample_id']]); $solids = $stmt_solids->fetchAll(PDO::FETCH_ASSOC); foreach ($solids as $solid) { echo htmlspecialchars($solid['name']) . ' (' . htmlspecialchars($solid['amount']) . ' ' . htmlspecialchars($solid['units']) . ')
'; } ?>
No sample wells found for this well plate.
No well plates found for this synthesis plan.