Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fherx/cb4782fdc6b35244464290bf1aadc849 to your computer and use it in GitHub Desktop.
Save fherx/cb4782fdc6b35244464290bf1aadc849 to your computer and use it in GitHub Desktop.
Return single value from mysqli PHP
$name = $mysqli->query("SELECT name FROM contacts WHERE id = 5")->fetch_object()->name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment