What code do I use to fill fields on a web page with cURL
?
These are the fields:
Field Name:
<li>
<label for="supporter_full_name">your name*</label>
<input class="textbox" id="supporter_full_name" name="supporter[full_name]" size="30" type="text" />
</li>
Email Address:
<li>
<label for="supporter_email">email*</label>
<input class="textbox" id="supporter_email" name="supporter[email]" size="30" type="text" />
</li>
Button:
<input class="large blue awesome" id="verificar_button" name="commit" type="submit" value="Verificar">
I have a list with nome
and email
one underneath the other, and I want to put them in textarea
and have them tested, and when the value is valid >, it returns with the name and email written on the front - válido
, and when the value is invalid it returns with the name and email written on the front - inválido
. Thank you in advance.