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 | |
$servername = "localhost"; | |
$username = "non-root"; | |
$password = "non-root-password"; | |
$conn = new mysqli($servername, $username, $password, $dbname); | |
if ($conn->connect_error){ | |
die("Connection failed: " . $conn->connect_error); | |
} | |
$sql = "INSERT INTO LED_status (id, status) |
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 | |
$servername = "localhost"; | |
$username = "non-root"; | |
$password = "non-root-password"; | |
$dbname = "ESP32IoT"; | |
$conn = new mysqli($servername, $username, $password, $dbname); | |
if ($conn->connect_error) { | |
die("Connection failed: " . $conn->connect_error); | |
} |
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 | |
$servername = "localhost"; | |
$username = "non-root"; | |
$password = "non-root-password"; | |
$conn = new mysqli($servername, $username, $password); | |
if ($conn->connect_error) { | |
die("Connection failed: " . $conn->connect_error); | |
} | |
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
# common settings | |
defaults | |
port 587 | |
auth on | |
tls on | |
tls_starttls on | |
tls_trust_file /etc/ssl/certs/ca-certificates.crt | |
logfile /var/log/msmtp/msmtp.log | |
# outlook smtp settings |
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 | |
$to = "[email protected]"; | |
$from = "[email protected]"; | |
$subj = "sending email using php mail() function"; | |
$body = "This email is sent using php mail() function. This proves that your msmtp service is correctly configured with php."; | |
mail($to, $subj, $body); | |
?> |
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
.entry-author-name:after { | |
content: '\f058'; | |
font-family: FontAwesome; | |
font-size: 15px; | |
margin-left:5px; | |
margin-right:5px; | |
color:#0274be;} |
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
var binaryStr = "111111111111111111111111000011111111111111111111"; |
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
B111111111111111111111111000011111111111111111111 |
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 phpinfo(); ?> |
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
# The MariaDB configuration file | |
# File location /etc/mysql/mariadb.cnf | |
# Tweak suggested by Abhishek Ghosh, thecustomizewindows.com | |
# for 16GB dedicated server running Apache2, PHP for WordPress single site | |
# Test with Major Hayden's MySQL Tuner | |
# https://github.com/major/MySQLTuner-perl | |
# | |
[mysqld_safe] | |
nice = -15 |