Help for this page

Select Code to Download


  1. or download this
    $get = $dbh->prepare("SELECT * FROM clients ORDER BY lastname");
    $get->execute;
    
  2. or download this
    $clients = $get->fetchall_hashref('id');
    
  3. or download this
    @list = keys(%{$clients});