This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"{", "}", "-", "_{", "!", "*", "<", ">", "Script", "script", "alert", "/", "'", "%", "UNION", "union", "--", "table", "TABLE", "from", "FROM", '"', ")", "(", "document.location", "onclick", "http:", "https", ":", "<a>", "<a", "+", '"', "", "=", "<sc", "<s", "ript>", "nmouse", "onmouse", "eval", "String", "fromCharCode", "code", "prompt", "javascript", "onmouse", "onmouse" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Leitor emails Imap com download de anexo | |
* extension=php_imap.dll | |
*/ | |
/* realiza a conexão com as suas credenciais */ | |
$mailbox = '{meuhost.com.br:993/imap/ssl}INBOX'; | |
$username = '[email protected]'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'label' => '', // Text in Label | |
'class' => '', | |
'style' => '', | |
'wrapper_class' => '', | |
'value' => '', // if empty, retrieved from post meta where id is the meta_key | |
'id' => '', // required | |
'name' => '', //name will set from id if empty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Basta atribuir a classe respectiva no input | |
$('.telefone').on('keyup', function() { | |
mascara(this, mascara_tel); | |
$(this).attr('maxlength','15'); | |
}); | |
$('.cpf').on('keyup', function() { | |
mascara(this, mascara_cpf); | |
$(this).attr('maxlength','14'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/css/select2.css" /> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/js/select2.js"></script> | |
<label for="brand">Bandeira do Cartão</label> | |
<select id="frm_brand" required style="width:100%;"> | |
<option value="" selected>Selecione um bandeira</option> | |
<option value="visa">Visa</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> | |
<select class="form-control" name="frm_select" id="frm_select"> | |
<option value="1" atributo_nome="Primeiro Item" > | |
Item 1 | |
</option> | |
<option value="2" atributo_nome="Segundo Item" > | |
Item 2 | |
</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="frm_select_estados"> | |
<option value="AC">Acre</option> | |
<option value="AL">Alagoas</option> | |
<option value="AP">Amapá</option> | |
<option value="AM">Amazonas</option> | |
<option value="BA">Bahia</option> | |
<option value="CE">Ceará</option> | |
<option value="DF">Distrito Federal</option> | |
<option value="ES">Espírito Santo</option> | |
<option value="GO">Goiás</option> |