Ok, I’m reading about hashing and md5. I understand the need for security and will implement as I continue here. But Kevin’s last post does not tell me how to extrapilate a field from a recordset. Let’s pretend it’s not the login but an product that is on an invoice that I want to display.
Now I would have…
$str=“Select * From tbl_Invoices Where Inv=100”;
$stmt = $pdo->prepare($str);
$stmt->execute();
$rst = $stmt->fetchAll();
echo “
FirstName=” . $rst[Product1];
I know that the echo line is incorrect because nothing prints to the screen. What is the correct syntax to the value of “Product1”?
Also, how do I thank both of you for your help?