RE: [PHP-WIN] Array Question

2007-08-17 Thread Vandegrift, Ken
Just use a column alias in your sql query and reference the alias in your array. SELECT t1.contactID as 'contactID_1', t2.contactID AS 'contactID_2' FROM table1 t1, table2 t2 ...rest of query Then your results data array can be referenced like so: mydata['contactID_1'] mydata['contactID_2'] Ken

RE: [PHP-WIN] SSL on Windows Server 2003

2007-02-09 Thread Vandegrift, Ken
need to somehow associate the payflow certificate .0 with this? Thanks in advance for your help and time. Ken Vandegrift [EMAIL PROTECTED] Web Administrator Sharis Mgmt. Corp -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 9:09 A

[PHP-WIN] Making OpenSSL use A Verisign issued certificate for ecommerce

2007-02-08 Thread Vandegrift, Ken
Hello All, I am currently switching to a basic shopping cart system that I created to a more robust PHP X-Cart system that my company purchased, but I am having an issue getting transactions to go through Verisign's payflow pro. I have OpenSSL 0.9.8d installed, but when the OpenSSL module is c

RE: [PHP-WIN] SSL on Windows Server 2003

2007-02-07 Thread Vandegrift, Ken
ift [EMAIL PROTECTED] Web Administrator Sharis Mgmt. Corp -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 07, 2007 9:09 AM To: Vandegrift, Ken Cc: php-windows@lists.php.net Subject: Re: [PHP-WIN] SSL on Windows Server 2003 > Good Day T

[PHP-WIN] SSL on Windows Server 2003

2007-02-05 Thread Vandegrift, Ken
Good Day To All, System Config: Windows Server 2003 PHP 5.2 I'm hoping someone can help give me a high level understanding between the differences between an SSL certificate installed on my webserver and an SSL module (e.g. OpenSSL) installed on my web server. 1. My current understanding is t

RE: [PHP-WIN] Payflow Pro used as a COM object

2006-11-29 Thread Vandegrift, Ken
: Vincent DUPONT [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 1:23 PM To: Vandegrift, Ken; php-windows@lists.php.net Subject: RE: [PHP-WIN] Payflow Pro used as a COM object Hello, I've had very bad experience with COM objects in PHP too. It was 2 years agi, and I though the 5.

[PHP-WIN] Payflow Pro used as a COM object

2006-11-29 Thread Vandegrift, Ken
Good Day, I have a situation with our ecommerce site where the the payment processing script will hang forever while waiting for the Payflow Pro gateway client to be initialized through COM. This does not happen everytime, but is happening frequently enough to cause frustration with our customer

[PHP-WIN] SSL and Payflow Pro

2006-07-10 Thread Vandegrift, Ken
Good Day List, I am using VeriSign Payflow Pro for online payment processing and just want to know if there is any additional leg work involved for ensuring SSL encryption? I have the Payflow Pro client running as a COM object on Windows 2003 Server with a Verisign SSL 128bit certificate instal

[PHP-WIN] Dynamic HTML table sort with PHP

2006-07-07 Thread Vandegrift, Ken
Good Day List, Does anybody know of a pure PHP way to make table header cells trigger a column sort? If I have a table header that contains a link that when clicked resubmits the page to itself with the proper sort query variables (e.g. index.php?sortBy=ORDER_ID&sortOrder=ASC), I want PHP to re

[PHP-WIN] WSDL Parsing Error Question

2006-06-23 Thread Vandegrift, Ken
Good Day, I have been giving myself a crash course in SOAP for a project I am working on that will activate gift cards purchased from our company's online store. Once an admin marks an order as shipped and swipes the card number(s) associated with an order, I want to package this information as

[PHP-WIN] Transactions and PDO

2006-06-21 Thread Vandegrift, Ken
Just wanted to throw this out there to see if anyone may be able to help with a PDO transaction that does not appear to be working. I want to update an order record in the database and also insert giftcard numbers associated with this same order into another table. So I am trying to do one update

[PHP-WIN] SOAP newbie help

2006-06-19 Thread Vandegrift, Ken
Good Day to Everyone, I need to interact with a Web Service that activates a gift card for my company and I will be using the SOAP extension built into PHP 5.1.2 and running on Windows Server 2003 and IIS6. I have read the manual along with numerous online tutorials but still have trouble under

RE: [PHP-WIN] Problems with Database Singleton Class

2006-04-14 Thread Vandegrift, Ken
$instance; } Ken Vandegrift -Original Message- From: Martin Vidovic [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 10:58 AM To: php-windows@lists.php.net Subject: Re: [PHP-WIN] Problems with Database Singleton Class On Friday 14 of April 2006 17:51, Vandegrift, Ken wrote

[PHP-WIN] Problems with Database Singleton Class

2006-04-14 Thread Vandegrift, Ken
Hello, I am trying to create a singleton database class that wraps up the creation of the PDO class. However, when I call the getInstance() method and run it through the gettype() method (for testing purposes) it returns 'object' but when I try to create a statement object I recieve a Fatal erro