good afternoon, I have a form on a page where you get values, which through a file attached to the database, well now I want the value of a field concatenated me with a fixed string and two variable data, how do I include it in the code?
field I want to calcuate: marks get the data of the following chain: link
and the values that I want to concatenate are the ones I have in the initial variables and color, so that the value that should be inserted in the table should be this way: link
The code that I have and if it works is the following, but there it takes the form values
$sql = "INSERT INTO 'stv_t_instaladores'
(
'nombre_completo',
marca,
estatus,
'iniciales',
'colorx'
)
VALUES
(
'$_POST[nombre_completo]',
'$_POST[marca]',
'$_POST[estatus]',
'$_POST[iniciales]',
'$_POST[colorx]'
);";
I hope you gave me to understand, thank you.