Hi,
I want to run perl program which can retrieve some updated data from my database. Have anyone knows how to show these data using tab-delimited format in web site via Perl script with PHP?
Like
sth = $dbh->prepare( 'SELECT S1, S2, S3 FROM some_table' );
if( $sth ){
$sth->execute( );
echo "sth executed.<br>\n";
$row = $sth->fetchrow_array( );
echo .$row[0]. \t .$row[1]. \t .$row[2]. "\n";
$sth->finish( );
It sounds right or wrong?