This file contains hidden or 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 | |
| $conn = mysqli_connect("HOST", "USER", "PASS", "DATABASE"); | |
| if (!$conn) { | |
| echo "Error: Unable to connect to MySQL." . PHP_EOL; | |
| echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL; | |
| echo "Debugging error: " . mysqli_connect_error() . PHP_EOL; | |
| exit; | |
| } |
This file contains hidden or 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 context = (function () { | |
| function fire (str) { | |
| console.log(str) | |
| } | |
| function getFire () { | |
| return fire | |
| } | |
| return { |
This file contains hidden or 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 mysql = require('mysql'), | |
| assert = require('assert'), | |
| util = require('util'), | |
| sys = require('sys'); | |
| var client = mysql.createClient({ | |
| user: 'root', | |
| password: null, | |
| database: 'tests' | |
| }); |