[PHP] Credit Card Processing
Hi All, Look for any recommendations on a credit card payment processing library. Are there any out there? Thanks. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re: building forms from what the MySQL table looks like
Hi Justin, You might want to take a look at CodeCharge (www.codecharge.com). Thanks. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Graphing Question
Hi All, Does anyone know of a graphing package that will allow a line graph with labels on the data points? Thanks in advance. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re: encrypting passwords, how to decrypt?
[EMAIL PROTECTED] (Hawk) wrote in <[EMAIL PROTECTED]>: Hi Hawk, Here is a snippet of what I use: if (isset( $txtUsername )) { $sql = "Select a.* from admins a where "; $sql .= "adm_name = '$txtUsername' "; $sql .= "and adm_pwd = PASSWORD('$txtPassword')"; $resultID = mysql_query( $sql ) or die("Error in Query: $query " . mysql_error()); $row = mysql_fetch_assoc( $resultID ); $num = mysql_num_rows( $resultID ); if ( $num != 0 ) { $auth = true; session_start(); session_register("Admin_ID"); session_register("Admin_Name"); session_register("is_auth"); $Admin_ID = $row["AdminID"]; $Admin_Name = $row["adm_name"]; $is_auth = $auth; } mysql_free_result($resultID); } if ( ! $auth ) { error_reporting($err_lvl); $is_auth = $auth; header("Location:logon.php"); exit; } else { header("Location:adminindex.php"); exit; } ?> Hope this helps. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Session_start() issue??
Hi Jim, Thanks for you replies. I was using relative paths and still I got the seperate sessions being opened. The interesting part was this was only happening on my dev machine (win32), when I moved the files to a Linux box, I did not have the same problem. Must be something in the IIS or PHP.INI on the dev box I guess. Thanks again. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Session_start() issue??
Hi all, Has anyone seen this. I have a login form (login.htm) which calls a login handler (check_login.php). If the login is sucessfull the check_login.php will set a couple session variables, then redirect the user to a menu page. The problem I am seeing is that when I call session_start() from the menu page, I get a new session reference rather than a reference to the session I started in the check_login.php. Is there a setting in the php.ini I should change? Any thoughts would be greatly appreciated. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Re: LDAP enabled
Answered my own question. Thanks anyway. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] LDAP enabled
Hi All, Is there anyplace I can get a win32 PHP binary with LDAP enabled? If not, can I create one myself? Any info would be greatly appreciated. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]