Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mms1

  1. mms1

    how to get epoch time?

    Unix system date in PERL ################ $date= `date`; print "Unix system date is $date"; $day = `date +%d`; print "$day"; $month = `date +%m`; print "$month"; $year = `date +%y`; print "$year"; $time=`date +%H%M%S`; print "$time";
  2. mms1

    results from a mysql query using dbi

    Use this one this works fine Mamun mms@sdnbd.org my ($dbh4, $sth4,@row4); $dbh4 = DBI->connect("dbi:mysql:database_name",username,password) || &CgiDie ("Cannot Open Show Database"); $sth4 = $dbh4->prepare("select id,po from po where id='$id'"); $sth4->execute...
  3. mms1

    shell script SAC with perl

    anu one know how to run SAC with PERL I want print the Internet Access time of user so I will give the User name and perl will show me the Total Time of that user. Hope to have suggestion from you all ammun

Part and Inventory Search

Back
Top