Recent content by rbjolly

  1. R

    The "mysqli" extension on the PHP information page not showing up?

    Are you sure you have the correct php.ini file? Is it the location listed in your phpinfo page? The default location is usually in the php install directory. Also, in case you did not know, the preferred method of php installation on MS Windows is via the MS Web Platform installer, which I think...
  2. R

    2007 Toyota Tacoma Issue?

    I have 63k miles on my Tacoma. When I come to a stop, I feel/hear a bump, kind of like someone bumped the rear bumper. It generally happens after I've been stopped for a few seconds. Is this an issue with the rear axle?
  3. R

    With 200 Dollars what road bike could i get that is a good one?

    Maybe the Denali Road Bike is your best bet. I see on Amazon that they have a small frame that may fit you (see links below). But you're basically in a really bad price point. Typically a good entry level road bike will cost $700 to $1,000. Having never owned one, I'm not sure how well the...
  4. R

    are trek bikes good or are they lower tier bikes?

    Having owned several Trek bicycles over the past 20 years, I can tell you they are excellent and definitely not lower tier. Lance Armstrong rides Trek. Need I say more?
  5. R

    do people working in bike shops work on commission? or straight pay?

    Most sales people I know work on a base plus commission while the mechanics work for a regular pay check.
  6. R

    help with contact form php?

    Change the following code segment: $emailField = $_POST['email']; $nameField = $_POST['name']; $phoneField = $_POST['phone']; $interestField = $_POST['interest']; $contactField = $_POST['contact']; $commentsField = $_POST['comments']; $offersField = $_POST['offers']; To: $email =...
  7. R

    i need some php help!?

    Ah ha! I'll answer it twice. <html> <head> <title>Test Sport List</title> </head> <body> <?php $sport_list=''; if (isset($_POST['sports'])) { $sport = $_POST['sports']; $dts = date("G:i:s d/m/y"); if ($_POST['sport_list']) { $sport_list = "<li>$sport $dts" . $_POST['sport_list'] ...
Back
Top