Skip to content
Advertisement

Sending and email with the auto Increment number attached to the email using PDO/MySQL

Hello my favorite people!

I am trying to send an email after submitting a form, with the AUTO INCREMENT number attached to the email because the AUTO INCREMENT number is the clients Job Card Reference Number. So far i have successfully created the insert script which inserts the data into the database perfectly, and also sends the email too. But does not attach the AUTO INCREMENT number into the email. The INT(11) AUTO INCREMENT primary key is “job_number” in my MySQL database.

Here is my insert page:

JavaScript

My Form Action Page:

JavaScript

I tried to follow this tut: Send email with PHP from html form on submit with the same script

I have also tried activating errors on this page with no results:

JavaScript

I am new and have NEVER done a code like this where the AUTO INCREMENT number needs to be sent in an email. Please can someone assist me. I can edit my question if more clarification is needed.

EDIT: Ive done some research and found i can use the lastInsertID (https://dev.mysql.com/doc/refman/8.0/en/information-functions.html#function_last-insert-id function. Some help implementing this would be so appreciated.

Advertisement

Answer

Ok so i used the MAX method to solve this issue. i added the following to the top of my createnewrepairs.php page:

$stmt = $db->prepare("SELECT MAX(job_number) AS max_id FROM repairs"); $stmt -> execute(); $job_number = $stmt -> fetch(PDO::FETCH_ASSOC); $max_id = $job_number['max_id'];

Then on the same page, i added the following form field

JavaScript

Then on the form processing page (processnewrepair.php) my code in my original post worked and generated the AUTO INCREMENT NUMBER to send in an email.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement