- or download this
$dbh->do('INSERT INTO users (name, day, phone) VALUES($name, $day, $nu
+mber)');
- or download this
my $bill = 'Text plus $ted'; # no interpolation.
my $bill = "Text plus $ted"; # Interpolation occurs.
- or download this
my $sth = $dbh->prepare('INSERT INTO users (name, day, phone) VALUES(?
+,?,?)' );
$sth->execute( $name, $day, $number );