-1
I’m trying to record the full HTML of a form. Since I have a system in which each user can have his or her individual form of payment, which requires that each one record the code of the buy button for example, Pagseguro.
What generates this error when I try to write to MYSQL via an administrative form I developed to save these payment codes:
You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near 'post'
action='https://www.meu.url/PagamentoSimples.do'>
I have tried to use several codes such as:
$clientepagseguro = strip_tags($_POST['clientepagseguro']);
Nothing worked out.
THE HTML:
<form method='post' action='https://www.meu.url/PagamentoSimples.do'>
<input type='hidden' name='id_carteira' value='[email protected]'/>
<input type='hidden' name='valor' value='4000'/>
<input type='hidden' name='nome' value='Site Lucrativo'/>
<input type='image' name='submit' src='https://static.moip.com.br/imgs/buttons/bt_pagar_c01_e04.png' alt='Pagar' border='0' />
</form>
What do I do to solve?
@Fleuquerlima field of type TEXT
– Gladison Neuza Perosini