Archive for March, 2008

New Geek/Technology Blog In The Making

Sunday, March 16th, 2008

Hey hey! We’ve finally decided about where we should be blogging other than this domain, as this domain is primarily for our company news releases and software updates. Myself and my fellow colleagues will be blogging at a certain “geek” domain in the very near future where we will be posting articles and posts like [...]

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 [...]

Complete AdultIndustryResource.com Software Updates

Sunday, March 9th, 2008

We had a business meeting in Las Vegas Friday through Saturday, so I’m sorry for the delay of news. And yes, the meeting was a great success. Details of that will trickle in once we finalize a few critical things.
Anyways, here is our list of complete software updates which are taking place with AdultIndustryResource.com:

CAPTCHA added [...]

Paris Hilton Sex Tape Finally Available for Lease

Wednesday, March 5th, 2008

That’s right. America’s favorite heiress slut’s sex tape is finally available to the general adult webmaster public for lease.
Must-Have Content For Your Members - The Paris Hilton Sex Video - Posted by the owner/controller of the content in question.
If you have a members area and have some extra money lying around, be sure to do [...]

AdultIndustryResource.com Software Updates

Tuesday, March 4th, 2008

We’ve recently been trying to focus exclusively on our newest baby, AdultIndustryResource.com. Within the next few days you’ll notice a few new features going live. Here’s a list of what we have planned for this week:

User system will finally go live (beta).
RSS Feed data/information for Sponsor/Affiliate programs will be integrated into the Sponsor system.
FREE Sites [...]

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 [...]