
I’ve created my own Avatar Generator with The Charavatar iconset available here :) Create an avatar of your favorite super hero, vilain, monster, you name it! Go create your avatar!
function fetchJSONFile(path, callback) { var httpRequest = new XMLHttpRequest(); httpRequest.onreadystatechange = function() { if (httpRequest.readyState === 4) { if (httpRequest.status === 200) { var data = JSON.parse(httpRequest.responseText); if (callback) callback(data); } } }; httpRequest.open('GET', path); httpRequest.send(); } fetchJSONFile('file.json', function(data){ // Do something with Data console.log(data); });
# Mod_Security Error Response body too large # Domains > domain.com > Apache & nginx Settings > Additional directives for HTTPS <IfModule mod_security2.c> SecResponseBodyLimit 546870912 </IfModule>
<?php // Set global $pdo; if (isset($pdo)) {return;} mysqli_report(MYSQLI_REPORT_STRICT); $pdo = new mysqli(DB_SERVER, DB_USER, DB_PASSWORD, DB_NAME); // Set the PDO::ATTR_EMULATE_PREPARES Attribute to false $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); if (mysqli_connect_errno()) { die(sprintf("Connect failed: %s\n", mysqli_connect_error())); } // Prepared Statements $firstname = "bruce"; $sql = "SELECT * FROM users WHERE firstname =:fname ;"; $stmt = $pdo->prepare($sql); $stmt->bindValue(":fname", $firstname); $stmt->execute(); if(!$result = $stmt->fetch(PDO::FETCH_OBJ)){ echo "Credentials do no match"; } else { echo"Id: ".$result->id. " Name: ".$result->firstname." ".$result->lastname; } // Prepared Statements With Parameterized Query $firstname = "jeff"; $sql = "SELECT * FROM users WHERE firstname = ?"; $stmt = $pdo->prepare($sql); $stmt->bind_param("s", $firstname); $stmt->execute(); $result = $stmt->get_result(); if($result->num_rows === 0) exit('No rows'); while($row = $result->fetch_assoc()) { echo"Id: ".$row['id']. " Name: ".$row['firstname']." ".$row['lastname']; }
Loading...
No more items to load