I have data stored in 2 variables $Execution_Time and $Description.
I am trying to write the data into a table emails as follows:
$dbh->do('INSERT INTO Emails (ID, date_entered, description, deleted) VALUES ("1", "$Execution_Time", "$Description","0")');
but the word description is written into the field and the date is written as default.
I am trying to write the data into a table emails as follows:
$dbh->do('INSERT INTO Emails (ID, date_entered, description, deleted) VALUES ("1", "$Execution_Time", "$Description","0")');
but the word description is written into the field and the date is written as default.