[PHP-WIN] Re: include txt in html

2006-03-15 Thread mailbox 19860221
Alf, Did you check the following lines? AddType text/html .shtml AddOutputFilter INCLUDES .shtml In order to make SSI work they *MUST be uncommented*. Moreover, the include_module should have been compiled when you compiled your httpd configuration -- or just uncommented, if you use Windows. An

[PHP-WIN] PHP 4.4.x and TIDY

2006-03-15 Thread phpWalter
I *really* need to get this going on my PHP 4 XP box. Anyone have any ideas? I have 2 DLLs: * php_tidy.dll 24.0 KB Thursday, February 16, 2006, 10:54:02 AM * php_tidy.dll 7.30 KB Wednesday, March 15, 2006, 10:43:10 AM Neither file will not generate an error Neither file will show up in m

Re: [PHP-WIN] Global variables

2006-03-15 Thread Alf Stockton
Now if in PMConnect() I return $link(see example below); it works for me. global $dbservertype, $servername, $dbusername, $dbpassword, $dbname, $link; $link = mssql_connect("$servername", "$dbusername", "$dbpassword"); if (!$link) { sprintf($Message, "At %d in %s Could not

[PHP-WIN] Global variables

2006-03-15 Thread Alf Stockton
The following scenario has me confused. In my main program I have:- in an included function I have global $dbservertype, $servername, $dbusername, $dbpassword, $dbname, $link; $link = mssql_connect("$servername", "$dbusername", "$dbpassword"); if (!$link) { sprintf($Message