In this post, I’m going to share my experience with programing with the Jangomail API. I will be working with the Jangomail API and provide a simple command for sending a basic transaction email, including an attachment in HTML. First, create an account with Jangomail and take note of your login credentials. Next, connect to…
Category: Archived
These are blog posts that were written in the past and have been archived. All of these are from many years ago. I have improved a great deal as a writer since these blog posts were created.
Integrating CKFinder with the Codeignitor Framework (PHP)
Please note that the information contained in this blog post was written in 2013 and is about programming with code igniter., so some of the information may not be applicable today. However, the general principles and ideas presented are still relevant. If you are using Codeignitor, CKFinder, and CKEditor, you may have the challenge of…
My Favorite Webhost
My General Thoughts So I wanted to share my thoughts pertaining to web hosting. They are kind of biased…but it is what it is. Throughout my entire web/application development career, I cannot describe how many hosts I have researched, intensely studied, or personally tried. I have personally tried a variety of them (tons of free…
C++ Case/Switch Statement Warning
Programming, C, PHP. There are so many programming languages out there. If you are a programmer of any kind, you are most likely familiar with the Case/Switch statement in C++ This is simply a way in programming for you to do different things depending on the value of a variable. For example..if your working with…
Xhtml to PDF – My Thoughts
I wanted to express my thoughts here about PDF generation in PHP. Doing this by default is pretty easy. You download FPDF (or the library of your choice), you install it, configure it, and set it up. Then generally you just build your PDF. I recently ran across a few different classes that have claimed…
Facebook Login
So you are a PHP developer and you are trying to figure out how to integrate Facebook Login using Facebook Programming? Let me help with that. Please note that the code in this post is not suitable for a production environment. It has been partially extracted from Codeigniter and partially formatted, but it is not…
Google Reader – The Ultimate Tool For Developers
Exploring Google Reader as a news, blog, and podcast reader has been one of the most innovative experiences in my career. Throughout my career, I have used various productivity tools such as time tracking software, invoice management systems, project management systems, calendars, to-do lists, personal databases, communication systems, and more. However, among all these tools,…
Dealing with Sessions and Cookies in PHP
PHP as a Programming language and development toolkit has a lot of advanced and easy to work with features for both new and existing programmers. PHP has built-in powerful session and cookie handling features. You can easily use sessions and cookies with core PHP functions without much effort. Use sessions for short-term state saving and…