There's several small errors in your code.
First, like I mentioned in the comments, you define $db but use the variable $databse - which is undefined.
You also, similarly, define $Title but use $Titulo later. Pay more attention to carefully maintaining the same variable names.
Finally, like @Solt mentioned in the comments, you die() when returning a blank result set. It should say "No records found" or something like that.