Good Morning,
I have an issue with SQL Insert command from php. I'm trying the following code:
$TeamMatchTable = "INSERT INTO Team Match Table
(LineupForward) VALUES ('$HomeLineupForward')";`
However the contents of the $HomeLineupForward
variable is: Alexandre D'Acol;
This is resulting in an error because of the '
.
What can I do to solve this problem?