If you've named your table phonelist and your columns name and number, insert this at line 23:
my $sth = $dbh->prepare("SELECT name,number from phonelist where name=?");
$sth->execute($name);
my @row;
At line 33, insert this:
while (@row = $sth->fetchrow_array)
{print "Found: Name=$row[0] Phone Number=$row[1]<br>\n";