-4
I’m taking a test and I need to make a standard "work with us" form, with curriculum submission.. I need to know how to validate this form and make it receive files..
<form>
<label>Nome*:</label>
<input class="nome" type="text"></br>
<label>Email:</label>
<input class="email" type="password"></br>
<label>UF:</label>
<input class="uf">
<label>Cidade:</label></br>
<input class="cidade" type="text">
<label>Mensagem:</label></br><textarea class="msg" cols="35" rows="8"></textarea></br>
<input class="bnt_submit" type="submit" value="Enviar">
</form>
Search for Phpmailer
– hugocsl
Of course.. I’m doubtful what I should use for this.. is Jquery, PHP.. ?
– thaty
vc will need a backend for the file upload case. And to validate vc can use since the html validation. I suggest you try with js or jquery.
– cpll