-
Magento Certified:
Certification Directory Profile
Employed At:
Lyons Consulting Group
Sr. Applications Engineer Twitter
- New Blog Post - Magento: Programmatically Modify Attribute Configuration - http://t.co/pqpi0Xe0 #Magento 2012/04/30
- New Blog Post: Magento - More Flexibility For Your Layout Updates - http://t.co/ZhB1qBYf 2012/04/26
- @DirtyLoops That's because you guys are ridiculously good. Please come out with an album so I don't have to keep using yotuube to listen! 2012/04/26
Categories
-
Recent Posts
Category Archives: PHP
PHP: Learning OOP Is Challenging
I haven’t been posting much lately because most of my free time is being poured into trying to learn Object-Oriented PHP. With the development of the Magento Product Import Script, I figured it was time to “bite the bullet” and … Continue reading
Posted in PHP
Leave a comment
PHP: Explode and Implode
I was a really late in discovering the explode and implode functions of PHP. Explode and Implode offer an extremely easy way to convert a delimited string into an array, and the exact reverse of that. Often times you will … Continue reading
Posted in PHP
Leave a comment
Magento: Add Instructions to Form Field in Admin Product Add/Edit
I made some custom functionality that can happen with a product’s Short Description. Depending on what is put in that textarea, icons and special product-specific links can be displayed on that product’s view page. It requires a specific format though … Continue reading
Posted in Magento, PHP
3 Comments
PHP: One Line If Statement (Ternary Operator)
I decided to see if there was a better way to write a simple if statement today, and of course, there was. It uses the Ternary Operator (?:). My if statement today was rather simple. I needed to find out … Continue reading
Posted in PHP
Leave a comment
Mysqli and Object-Oriented PHP
Sometimes it is easy for me to get stuck doing things the way I know how to do it, rather than finding a better, more up-to-date method. I just had a recent post about making multiple connections to mysql, but … Continue reading
Posted in MySQL, PHP
Leave a comment
Connecting to Multiple MySQL Databases with PHP
I ran into a case where I needed to connect to two seperate databases within the same script, and I didn’t know how to do it without closing one connection, and opening another. With a little time and effort, I … Continue reading
Posted in MySQL, PHP
Leave a comment