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
//Paises do mundo | |
//Countrys of world | |
<select id="country" name="country" class="form-control"> | |
<option value="Afghanistan">Afghanistan</option> | |
<option value="Åland Islands">Åland Islands</option> | |
<option value="Albania">Albania</option> | |
<option value="Algeria">Algeria</option> | |
<option value="American Samoa">American Samoa</option> | |
<option value="Andorra">Andorra</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
define( 'SMTP_USER', 'your-mail' ); // Username to use for SMTP authentication | |
define( 'SMTP_PASS', 'your-password' ); // Password to use for SMTP authentication | |
define( 'SMTP_HOST', 'smtp.gmail.com'); // The hostname of the mail server (it's for gmail servers) | |
define( 'SMTP_FROM', 'email-from' ); // SMTP From email address | |
define( 'SMTP_NAME', 'your-name' ); // SMTP From name | |
define( 'SMTP_PORT', '587' ); // SMTP port number - likely to be 25, 465 or 587 | |
define( 'SMTP_SECURE', 'tls' ); // Encryption system to use - ssl or tls | |
define( 'SMTP_AUTH', true ); // Use SMTP authentication (true|false) | |
define( 'SMTP_DEBUG', 1 ); // for debugging purposes only set to 1 or 2 |
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 | |
/*INSTALL NEW PLUGIN WITHOU FTP CREDENTIALS*/ | |
/*PERMITE INSTALAR PLUGIN SEM FTP*/ | |
define('FS_METHOD','direct'); |
NewerOlder