Dear,
I have the following question, I have tried several possible solutions but I have not achieved it.
I have a form with a Select and 2 textarea fields.
The fields are "Brand" with the variable $ fid = 15, Model with the variable $ fid = 18 and Year with the variable $ fid = 19. I attach the image.
I need to dynamically obtain the value of each of the fields and each entry that is made in the form. In this case the values are FORD, ABC, 2016.
and then add them to an open graph tag, something like the following:
**/ necesito una funcion parecida a esto, se que el codigo esta totalmente erroneo, pero es para que tengan una idea*/
<meta property="og:title" content="'.$_POST [valor del $fid=15].'&'.$_POST [valor del $fid=18]'&'.$_POST [valor del $fid=19]"/>
**/ ejecutado deberia imprimir algo como lo siguiente*/
<meta property="og:title" content="FORD ABC 2016"/>
Thank you very much in advance for your great help.