YetAnotherForum
Welcome Guest Search | Active Topics | Log In | Register

IPN Code Check Options
robindean
#1 Posted : Wednesday, July 27, 2011 6:19:00 AM
Rank: Starting Member

Groups: Registered

Joined: 7/27/2011
Posts: 4
Location: Chicago
I charge monthly and use a timestamp with some math to determine whether or not an account payment has expired.

My biggest concern is my use of this ...

Code:
<input type="hidden" name="on0" value="' . $username . '">


Will this info be present in every recurring charge? I'm hoping it will.

I'd also like advice/opinions about my IPN code ...

Code:
<?php
if ( count( $_POST ) > 0 ) {
                $account = $_POST[ 'option_name1' ];
                if ( $account && $_POST['payment_status'] == 'Completed' && $_POST[ 'payment_gross' ] == '2.99' && $_POST[ 'mc_currency' ] == 'USD' ) {
                                $connection = mysql_connect( "MYHOST", "MYUSERNAME", "MYPASSWORD" );
                                mysql_select_db( "MY-SPECIFIC-DATABASE" );
                                mysql_query( "update users set payment_id = '" . $_POST[ 'subscr_id' ] . "' where username = '" . $account . "'" );
                                mysql_query( "update users set payment_status = '" . time() . "' where username = '" . $account . "'" );
                                mysql_close( $connection );
                }
                $time = time();
                while ( file_exists( 'PRIVATE-LOCATION/' . $account . '_' . $time . '.txt' ) )
                                $time++;
                $file = fopen( 'PRIVATE-LOCATION/' . $account . '_' . $time . '.txt', 'w' );
                fwrite( $file, print_r( $_POST, true ) );
                fclose( $file );
}
?>
Sponsor  
 
robindean
#2 Posted : Wednesday, July 27, 2011 2:55:49 PM
Rank: Starting Member

Groups: Registered

Joined: 7/27/2011
Posts: 4
Location: Chicago
BUMP
robindean
#3 Posted : Thursday, July 28, 2011 3:32:22 PM
Rank: Starting Member

Groups: Registered

Joined: 7/27/2011
Posts: 4
Location: Chicago
BUMP BUMP BUMP
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFVision Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF | YAF © 2003-2009, Yet Another Forum.NET
This page was generated in 0.417 seconds.