connect_errno) die('Database error: ' . $base->connect_error); $command=$base->prepare("set names 'utf8'"); $command->execute(); $command->close(); $command =$base->prepare('select Name, Population, GNP, GovernmentForm from Country order by Name desc'); $command->execute(); $command->bind_result($name,$pop,$gnp,$gov); while ($command->fetch()) echo "$name $pop $gnp $gov \n"; ?>