wongle
-
Posts
26 -
Joined
-
Last visited
Community Answers
-
wongle's post in Unable to view clients in list that are assigned to my account ID was marked as the answer
Managed to fix this;
$stmt = $pdo->prepare('SELECT * FROM contacts where mentor = ?');
$stmt->execute([$account['id']]);
$mentors = $stmt->fetchAll(PDO::FETCH_ASSOC);
Also defined $fullcontactinfo to $mentors correctly (hold head down in shame lol)
Thank you all for your help
-
wongle's post in Edit form not displaying time and date from database was marked as the answer
Sorted - Y-m-d\TH:i:s
Now working fine
Thanks for your help guys