Using perl Syntax Highlighting
#! /perl/bin/perl
print "content-type: text/html\n\n";
use DBI;
$db="itlm";
$host="localhost";
$port="3306";
$userid="hugoa";
$passwd="hugoa";
$connectionInfo="DBI:mysql:database=$db;$host:$port";
$dbh = DBI->connect($connectionInfo,$userid,$passwd) or die "No se puede conectar con la base de datos, intentelo mas tarde";
$query = "SELECT * FROM alumno";
$sth = $dbh->prepare($query);
$sth->execute();
print "Resultados<p>";
$sth->bind_columns(undef, $id, $nombre);
#aqui
while($sth->fetch()) {
print "$id $nombre<br>";
}
$sth->finish();
$dbh->disconnect;
print "content-type: text/html\n\n";
use DBI;
$db="itlm";
$host="localhost";
$port="3306";
$userid="hugoa";
$passwd="hugoa";
$connectionInfo="DBI:mysql:database=$db;$host:$port";
$dbh = DBI->connect($connectionInfo,$userid,$passwd) or die "No se puede conectar con la base de datos, intentelo mas tarde";
$query = "SELECT * FROM alumno";
$sth = $dbh->prepare($query);
$sth->execute();
print "Resultados<p>";
$sth->bind_columns(undef, $id, $nombre);
#aqui
while($sth->fetch()) {
print "$id $nombre<br>";
}
$sth->finish();
$dbh->disconnect;
Coloreado en 0.005 segundos, usando GeSHi 1.0.8.4
Si alguien me puede contestar lo más rápido posible, se lo agradeceré. Gracias, banda