I'm looking for recommendation on how to:
-install Apache on Windows
-install PHP on Windows
-connect to an Access Database
For Apache and PHP it looks like one may need a C compiler (or probably specifically MS Visual C?)
Is that correct or can one also find a binary or an installer?
Also in the db connect script: I guess something like this will do with HOST=''
-install Apache on Windows
-install PHP on Windows
-connect to an Access Database
For Apache and PHP it looks like one may need a C compiler (or probably specifically MS Visual C?)
Is that correct or can one also find a binary or an installer?
Also in the db connect script: I guess something like this will do with HOST=''
Code:
<?php
include_once 'globaldata.php';
$link=odbc_connect(HOST,DATABASE,'','');
if (!$link) {
exit("Connection Failed: " . $link);
?>