September 18th, 2008
I have a bunch of customers with different requirements who can add and drop services at anytime. For every 30 day interval my cron script made using php will check for the services and bill the customer accordingly.
1. Will i be able to process such payments in cron through paypal?
2. If yes. Then if the customer is having a paypal account with the same credit card details on my server, then will i be able to process the payment? (Because, usually paypal always reports that the credit card used for the payment is already registered with a paypal account).
Post your responses in the comments section below
Thanks
Posted in PHP Code, Tech | 8 Comments »
August 5th, 2008
This code will help you extract urls from google analytics account with analytics API by Felix Geisendörfer
// Start Code for getting the URLs
$pages = $this->Analytics->report(array(
‘profile’ => ‘PROFILE_NAME’,
‘report’ => ‘TopContent’,
‘trows’ => ‘500′
));
foreach ($pages[’AnalyticsReport’][’Report’][’Table’][’Row’] as $pages_individual):
$pages_urls[$pages_individual[’Key’][’#text’]] = $pages_individual[’Key’][’#text’];
endforeach;
$this->set(’pages_urls’,$pages_urls);
//End Code for getting URLs
Posted in PHP Code | 2 Comments »
May 20th, 2008
I am developing a drupal module for healthcare. My initial requirements for the module is to make eforms of many healthcare forms used in hospitals, research centers and insurance etc. This module will create a collaborative space for several healthcare related professionals. I am looking for new thoughts not code or help from other developers, since it is my final project for masters. I appreciate thoughts from creative people.
Posted in Tech | 1 Comment »