[PHP-DB] Cybercash? or Who?

2001-10-02 Thread Jason Caldwell
Does anyone have any recommendations on a Credit Card Processing solution to use with PHP? I researched CyberCash's CashRegister deal about 6 months ago -- now Verisign has taken over CyberCash, and have replaced CashRegister with PayFlowPro -- Looking at the pricing, etc... don't know if it

[PHP-DB] HTML or PHP?

2001-10-02 Thread Jason Caldwell
I have a problem that seems like it should be a snap to fix, but leaves me feeling frustrated to no end... I have a table (HTML) -- 2 Columns. In the right-hand column I store a URL (ie. http://someonesdomainname.com/path/anotherpath/file.html) The problem is -- when I pull the URL in -- it

[PHP-DB] PayFlowPro?

2001-10-02 Thread Jason Caldwell
How can I get Versign's PayFlowPro to work with PHP? I'm using Win2k version. Thanks. Jason [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

[PHP-DB] HTTP_SESSION_VARS Question

2001-09-24 Thread Jason Caldwell
I'm trying to use HTTP_SESSION_VARS all over my scripts for security reasons. However, for some reason, when I do the following the var isn't updated in the session file... anyone know why? session_start(); session_register(s_myvar); $HTTP_SESSION_VARS[s_myvar] = 1; If I assign the value to

[PHP-DB] Solved! -- Buuuuttt.

2001-09-24 Thread Jason Caldwell
In the PHP.INI file I had to set REGISTER_GLOBALS = off The Vars are registering -- but not with an INCLUDE file or FUNCTION plus, my INPUT tag data (vars) aren't coming over... What the #%#^ is go'in? Very frustrating any help would be greatly appreciated. Thanks Jason Jason

[PHP-DB] Cookies ???

2001-09-17 Thread Jason Caldwell
I've been reading the threads under SETCOOKIE (from php.net) -- some people are saying that setcookie doesn't seem to work for all browsers all of the time. Then some others go into how it seems to actually be the TIME format (unix time vs. GMT time) -- Should I just stick to the HEADER version

[PHP-DB] eregi and ereg??

2001-09-13 Thread Jason Caldwell
www.php.net shows the proper format for EREG and EREGI is: int ereg (string pattern, string string [, array regs]) My question is this; I want to be able to compare 2 or more strings to the EREG(I) STRING PATTERN... without having to create two separate EREG(I) IF...THEN statements... If I