Skip to content

Instantly share code, notes, and snippets.

View sjccodesnippets's full-sized avatar

sjccodesnippets

View GitHub Profile

Awesome PHP

A list of amazingly awesome PHP libraries, resources and shiny things.

Composer

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@sjccodesnippets
sjccodesnippets / gist:5549589
Last active August 14, 2018 08:17
PHP : MySQLi ultimate connect, query, fetch, and parse result, object oriented oo and procedural
<?php
mysqli_report(MYSQLI_REPORT_OFF); //Turn off irritating default messages
$mysqli = new mysqli("127.0.0.1", "user", "password", "database", 3306);
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();