Archive for the ‘Web Development’ Category

Web Development Cheat Sheets

Sunday, March 16th, 2008

I stumbled on to some really awesome cheat sheets about a year ago and simply love them. Since then I’ve been using them at least once per day during my development as a quick referance basically and can’t thank the guy who made them enough! They were produced by a guy who simply loves Jack [...]

Some MySQL For The Brain

Tuesday, March 4th, 2008

Looking for a few, quick PHP+MySQL tips? You found some.
List all tables in the pre-set database:
SHOW TABLES;
Always, always, always use an auto-incrementing unique ID:
CREATE TABLE table_name (
id INT NOT NULL AUTO_INCREMENT,
table_field1 varchar(250) NOT NULL default ”,
PRIMARY KEY (id)
);
Adding to an auto-incrementing table:
@mysql_query(”insert into table_name values(NULL,’My Field’)”);
There’s actually three different PHP API’s which you can use:

The [...]

Our First Paysite Is In Development

Tuesday, February 5th, 2008

We are officially letting everyone know that our very first adult paysite has began development. Also, we have begun development on a paysite content management system, of course. In the near future we’ll let you all know what URL it is…if you can’t figure it out on your own.
Until then, feel free to have fun [...]

Apple Releases Their “AIR” and So Do We

Wednesday, January 16th, 2008

Earlier today Apple announced the release of their brand new light-weight laptop computer, the Apple Air™ and we also have some “AIR” news.
We are very proud to announce the release of a brand new adult marketing related resource website, AdultIndustryResource.com!

Website Templates For Your Websites and Web Projects

Wednesday, January 2nd, 2008

If you’re looking for pre-made website templates to use with your new or old website or web project look no further than to the image on the left, Boxed Art! With well over $2,000,000 worth of website and design templates and content, it just doesn’t get any better than BoxedArt.com!

Our First Adult Comics Related Site Released!

Tuesday, January 1st, 2008

[Official Release:]
Our first of several new adult comics-related websites has been fully released to the public. Lewd Comics is a general adult comics/cartoon blog-type website developed by us here at Kiler Media. You may have noticed it added to our links section a few weeks ago, but now we are officially opening it up for [...]

The “Almost” Perfect Smarty Setup

Monday, November 19th, 2007

So, you’re looking for the “almost” perfect startup tutorial for the uber-famous Smarty template engine written with PHP? Or, are you just looking for a good straight-up to the point tutorial on using Smarty? Well, either way HERE IT IS!!
For the basic setup check out this tutorial here. Once you have Smarty running on your [...]

New Adult Comic Sites Coming Soon!

Saturday, November 10th, 2007

We have finally realized the true potential of adult comics and cartoons here at Kiler Media and have recently acquired a few adult comic related domains! We are very excited about the potential of these new domains and will post here when we have fully launched them!
To tell you the truth, my girlfriend is really [...]

Folder Structuring Best Practices

Saturday, November 10th, 2007

I tend to be tedious when it comes to how I layout my folder/file structures with large web projects. Here’s the just of it:
Basic Folder/Directory Structure:
/root/
-/img/
-/includes/
-/templates/

/root/ - This is the root folder/directory. You can also call this “public_html” or “httpdocs”. [...]

Kiler A-TGP/CMS Breaking News

Tuesday, November 6th, 2007

I have some news about our upcoming TGP/CMS system titled Kiler A-TGP/CMS. We have been looking into using template engines with the system for quite some time now and have finally decided on which to use. At first, we wanted to use our own template system but then have decided otherwise. We have finalized on [...]