What exactly does it prepare you for?
For example, does it encrypt, or something like that? Because, frankly, I use the method, but I never quite understood its use.
<html>
<head></head>
<body>
<?php
$a = new PDO(); //Imaginem que minhas infos estão aqui
$query = "SELECT * FROM tableusers";
$a->prepare($query);
$a->execute();
?>
</body>
</html>
In case there, without using the prepare would work in the same way. Or not? Does it perform what "underneath the rags"?