[PHP-WIN] DBA functions

2005-01-19 Thread Patrick Roane
I need to use DBM-style abstraction layer functions see: http://www.php.net/manual/en/ref.dba.php I am trying to find out if I compiled php (I actually installed WAMP 5: -- Apache version : Apache/1.3.33 (Win32) PHP version : 5.0.3 MySQL version :

[PHP-WIN] php 5.03 as isapi

2005-01-19 Thread Leonhard K�llinger
Hi, i have php5.03 on W3k with iis. As CGI its running, but i always get the error message about CGI Header. So i tried to change to isapi but mysql extension could not be loaded. Before i had installed php 5.02 running as isapi and it works fine until i updated. can anyone help? thx -- PHP Wind

[PHP-WIN] SpreadSheet_Excel_Writer PEAR package

2005-01-19 Thread Louis Young
Hi there Why does my background color not show if I set a cells pattern to 0? Cheers Louis -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] php 5.03 as isapi on W3K

2005-01-19 Thread Leonhard K�llinger
Hi, i have php5.03 on W3k with iis. As CGI its running, but i always get the error message about CGI Header. So i tried to change to isapi but mysql extension could not be loaded. Before i had installed php 5.02 running as isapi and it works fine until i updated. can anyone help? thx -- PHP Wind

[PHP-WIN] Re: SpreadSheet_Excel_Writer PEAR package

2005-01-19 Thread Torsten Roehr
"Louis Young" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there > > Why does my background color not show if I set a cells pattern to 0? > > Cheers > Louis Hi Louis, take a look here: http://marc.theaimsgroup.com/?l=pear-general&m=108127548918900&w=2 Have you tried setFgColo

Re: [PHP-WIN] Re: SpreadSheet_Excel_Writer PEAR package

2005-01-19 Thread tg-php
First, I have to admit that I don't have any experience with PEAR's Excel Writer, but I have quite a bit of Excel experience (including Excel+VBA so I got some experience with the internal workings via code). foreground color should be for the text and/or pattern color. bgcolor should be for t

[PHP-WIN] Import functions from a DLL file

2005-01-19 Thread Rui Silva
Hello! I have a DLL witch I want to use in PHP. This DLL file is Eztwain3.dll It is possible running it on PHP? I think I must create a special DLL (like php_Eztwain3.dll) to call Eztwain3.dll and also php5ts.dll Then I just need to add the next line on the php.ini: extension= php_Eztwain3

Re: [PHP-WIN] MySQL connect problems

2005-01-19 Thread Joseph L. Mueller
Armando wrote: If you upgraded to 4.1.x from 4.0.x then it's likely you need updated libraries (DLL files). Armando Joseph L. Mueller wrote: Just upgraded to MSQL 4.1.8 and PHP 4.3.10 and am running apache 2.0.43 on Win XP. When trying to connnect to Mysql I get the following error: "Warning:

[PHP-WIN] Really Super Dumb MSSQL (NOTE: Microsoft SQL) Question

2005-01-19 Thread Ron.Herhuth
I feel stupid asking this but I did a quick search and couldn't find an answer. When I write a simple query to query MSSQL...is there a simple way to know if the query executed without error? I'm looking to do a simple if then statment to inform the user if the database information was added suc

Re: [PHP-WIN] DBA functions

2005-01-19 Thread Patrick Roane
The steps I've taken so far to solve this are as follows: 1. I got rid of WAMP in favor of installing php5.0.3 manually. All i need help with now is how to: (see below-taken from manual) By using the --enable-dba=shared configuration option you can build a dynamic loadable module to enable PHP

Re: [PHP-WIN] DBA functions

2005-01-19 Thread Patrick Roane
the configuration file AKA php.ini! Ok ... moving forward now. --- Patrick Roane <[EMAIL PROTECTED]> wrote: > The steps I've taken so far to solve this are as > follows: > > 1. I got rid of WAMP in favor of installing php5.0.3 > manually. > > All i need help with now is how to: (see below-ta

RE: [PHP-WIN] Really Super Dumb MSSQL (NOTE: Microsoft SQL) Question

2005-01-19 Thread Mike
>From the php.net page for the mssql_query function: Returns: A positive MS SQL result identifier on success, TRUE if no rows were returned, or FALSE on error. You should be able to wrap the function itself in an if statement easily enough. -M > -Original Message- > From: [EMAIL PROT

[PHP-WIN] Re: Import functions from a DLL file

2005-01-19 Thread Jason Barnett
Rui Silva wrote: Hello! I have a DLL witch I want to use in PHP. This DLL file is Eztwain3.dll It is possible running it on PHP? I think I must create a special DLL (like php_Eztwain3.dll) to call Eztwain3.dll and also php5ts.dll Do you have the source for this DLL? I think you will find the pr

[PHP-WIN] how do I enable php to support DBA handlers?

2005-01-19 Thread Patrick Roane
I need some help configuring php on win XP to use DBA handlers. Does anyone have experience with this? I looked at the php manual and it says to download and install one of several types of DBM systems like: db4 and gdbm. The manual also says to install by: ... using the --enable-dba=shared co

[PHP-WIN] Re: MySQL connect problems

2005-01-19 Thread BoB6784
hi, Mysql 4.1.8 now support another authentication protocol and you need to upgrade to php 5 and activate mysqli extension (not mysql) and use mysqli_connect and change all mysql_* function to mysqli_* another way to fix the problem is to allow previous protocol but I forgot the way how to do th

Re: [PHP-WIN] Re: Output Image from Db to Browser

2005-01-19 Thread Auction Admin
Ok, you are trying to deliver the image inline. That requires a different document type in your header. Look at http://wp.netscape.com/assist/net_sites/pushpull.html. Search for multipart/mixed on the page. There is a brief description and an example that should help you get this done. Another

[PHP-WIN] Move to first record mssql

2005-01-19 Thread Louis Young
Hi there I'm looping through an mssql dataset, using while($row=mssql_fetch_array($rsElecTrans)), but now I would like to loop through the same dataset again later on, but inn order to do this I need to move to the first record, so I tried: mssql_data_seek($rsElecTrans, 0); while($row=mssql_fe