<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.mysqli.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'mysqli.quickstart.php',
    1 => 'Quick start guide',
    2 => 'Quick start guide',
  ),
  'up' => 
  array (
    0 => 'book.mysqli.php',
    1 => 'MySQLi',
  ),
  'prev' => 
  array (
    0 => 'mysqli.overview.php',
    1 => 'Overview',
  ),
  'next' => 
  array (
    0 => 'mysqli.quickstart.dual-interface.php',
    1 => 'Dual procedural and object-oriented interface',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mysqli/quickstart.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/mysqli.quickstart.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="mysqli.quickstart" class="chapter">
 <h1 class="title">Quick start guide</h1>
<h2>Indice dei contenuti</h2><ul class="chunklist chunklist_chapter"><li><a href="mysqli.quickstart.dual-interface.php">Dual procedural and object-oriented interface</a></li><li><a href="mysqli.quickstart.connections.php">Connections</a></li><li><a href="mysqli.quickstart.statements.php">Executing statements</a></li><li><a href="mysqli.quickstart.prepared-statements.php">Prepared Statements</a></li><li><a href="mysqli.quickstart.stored-procedures.php">Stored Procedures</a></li><li><a href="mysqli.quickstart.multiple-statement.php">Multiple Statements</a></li><li><a href="mysqli.quickstart.transactions.php">API support for transactions</a></li><li><a href="mysqli.quickstart.metadata.php">Metadata</a></li></ul>

 <p class="para">
  This quick start guide will help with choosing and gaining familiarity
  with the PHP MySQL API.
 </p>
 <p class="para">
  This quick start gives an overview on the mysqli extension. Code examples are
  provided for all major aspects of the API. Database concepts are explained
  to the degree needed for presenting concepts specific to MySQL.
 </p>
 <p class="para">
  Required: A familiarity with the PHP programming language, the SQL language,
  and basic knowledge of the MySQL server.
 </p>
 
 
 

 

 

 

 

 

 
</div>
<?php manual_footer($setup); ?>