Integrate The Authorize.Net AIM API with Python 3

May 12th, 2009

Judging by the popularity of my previous blog post Tutorial: Integrating the Authorize.Net AIM API with PHP as well as the articles I’ve written about Authorize.Net’s APIs on my merchant account information website I figured taking the opportunity to expand the code and tutorials I offered beyond PHP into other languages might be appreciated and [...]

Tags: , ,

PHP mail() Headers Are Displayed In Email Body

September 9th, 2008

Here’s a little gotcha that may rear its head one day and hopefully this will help prevent you from going nuts over such a little problem. If you are using PHP to send email from your web application and are using the built in mail() function and see your custom headers being displayed in your [...]

Tags: ,

Tutorial: Integrating the Authorize.Net AIM API with PHP

August 11th, 2008

Working with the Authorize.Net AIM API in and of itself is very easy to do. Between the integration guide and sample code a good programmer can have a working solution in only minutes. But this code is for demonstration purposes only and isn’t suited for live production sites. A reusable concise solution is needed. Fortunately [...]

Tags: ,

Use PHP to Force the www on URLs

July 24th, 2008

There are many good reasons to be consistent when using the ‘www’ in URLs. This includes good usability (it may confuse some people when they see it there some of the time but not others) and SEO (some search engines may consider the the same page with the ‘www’ different then the one without it). [...]

Tags: , , ,

Deleting Child Nodes of an Element Using JavaScript and the DOM

June 30th, 2008

A common thing to want to do with JavaScript and the DOM is to delete all child elements within a parent element. This could be a table, ordered/unordered list, or select menu. Unfortunately it seems that doing this is a PITA judging by how many people have posted requests for help throughout the Internet. Here [...]

Tags: ,