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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vjcyrano
  • Content: Threads
  • Order by date
  1. vjcyrano

    trouble getting php5 to work with mysql.. help needed

    i have been working on perl so far.. wanted to give php5 a shot.. i am using ubuntu edgy eft.. i got mysql and apache2 and php working.. but when i try to use mysql_connect() in a php script.. it gives me an error "Fatal error: Call to undefined function mysql_connect()" I then did sudo...
  2. vjcyrano

    How to time your statements in perl ?????

    I would like to time few perl statements and then re-run them if they exceed a fixed amount of time. eg. { foreach $var(@somearray) { print $var; } } What i want to do is time this block and if this block exceeds more than say 10 minutes to run, I...
  3. vjcyrano

    Strange behavior with math.h -> function log10

    Cant understand this strange behavior with math.h. <code> #include<math.h> int main() { double t = log10(10); return 1; } </code> works fine but <code> #include <math.h> int main() { double t1=10; double t = log10(t1); return 1; } </code> gives the following error...

Part and Inventory Search

Back
Top