Skip to content

Instantly share code, notes, and snippets.

@mellowsh
mellowsh / Single Value from mysqli PHP.php
Created April 2, 2017 04:34 — forked from bcamarneiro/Single Value from mysqli PHP.php
Return single value from mysqli PHP
$name = $mysqli->query("SELECT name FROM contacts WHERE id = 5")->fetch_object()->name;
<!-- Prevent FOUC (flash of unstyled content) -->
<style type="text/css">
.no-fouc {display: none;}
</style>
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
// add to document ready: $('.no-fouc').removeClass('no-fouc');
</script>