Hello !
I came across a Tutorial for installing Apache PHP and MySQL but versions have changed since, and somethings are no good any more, like PHP does not take the parameter --with-apache=xxxx anymore.
In that tutorial installing Apache is done in two phases with PHP in the middle. Somehow I have installed MySQL but I'm having a very hard time with the other two.
Thanks in advance for your help.
RH 7.3; Static or Dinymic module for Apache is OK; I just want it to work.

    hi Freddy Morel
    Please go to http://www.php.net/manual/en/install.apache.php to see how to install Apache et php and to read the "User Contributed Notes" in this page.

    For installing php4 in Apache 2, you have to change the step 10 to:

    1. ./configure --with-mysql --with-apxs2=/www/bin/apxs

    Hope this message can help you.

    Best regards

    Fanny ZHU

      Hi

      I downloaded PHP, Apache and My SQL from PHP Triad.

      I stored my database in Access and so formed an odbc connection via ODBC32..in Windows Settings panel.

      So, using Access with PHP and Apache does work fine with PHP triad and I can update, delete and display the data..but it displays an error:

      Warning: Failed opening 'DB\ODBC.php' for inclusion (include_path='.; \apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin') in C:\apache\htdocs\austincust\dispprinc.php on line 26

      The php code I used is:
      <?PHP
      include_once("DB\ODBC.php"); //line 26 this
      $dsn = "";
      $user = " ";
      $pwd = " ";
      $result = 0;

      $num =odbc_connect($dsn, $user, $pwd);

      $get = "select Pname,Ccontact,Pphone,Pfax,Pemail from TableP";

      $num1 = odbc_exec($num, $get);

      ?>

      What to do so as not get this error. Please help.

        Write a Reply...