Google Calendar

I have added the “My Calendar” tab to my site. It will say busy to some people and for details to others that have received an invite.

Feel free to use this information to schedule an appointment with me.

My Calendar

My calendar has moved to http://ical.me.com/ayers.c/Busy%20Times

AppWhirl [INVITES]

AppWhirl
I have a few AppWhirl beta invites available. If you are interested in making your own mobile iPhone app, free, in about 5 minutes leave a comment with a request for the invite.

Empire Avenue [INVITES]

Empire Avenue
I have 3 invites available to Empire Avenue. If you would like an invite feel free to message me! http://www.empireavenue.com/

About:

Empire Avenue is a revolutionary online influence stock exchange combined with an advertising platform that allows individuals and organizations to convert their online influence and reach into revenue. To this end we will be connecting advertisers, consumers and influencers in a manner not as yet undertaken in the online space. Through the Empire Avenue influence stock exchange and its tracking features we will measure the influence value of individuals registered with Empire Avenue.
Influencers will be given control over the advertising they carry, and advertisers will be better able to reach their target consumer. We believe that this better targeted advertising approach will lead to better returns and leads for advertisers. Empire Avenue sets itself apart not only in its unique feature set, but also by paying influencers the majority of advertising revenue generated unlike other major advertising networks.

Check if a Function exists within a Class [PHP]

The following code returns a bool value of true or false:

<?
class Books
{
public function read()
{

}
public function find()
{

}
}

$class = new Books();
$function = "find";
$methodVariable = array($class, $function);
$function_exists = var_dump(is_callable($methodVariable));
echo $function_exists;
?>

Live example of above code.

How to create a HTML form with a multiple choice drop down with PHP action

HTML Code:

<html>
<body>
<form action="multiEmail.php" method="post">
<select name="to">
<option value="a@a.com">a@a.com</option>
<option value="b@b.com">b@b.com</option>
<option value="c@c.om">c@c.com</option>
<option value="d@d.com">d@d.com</option>
</select>
<input name="Submit" type="submit" value="Submit" />
</form>
</body>
</html>

PHP Code:

<?
$to = $_POST['to'];
echo $to;
?>

Live example of above code.

How to get an upcoming date with a preset start date [PHP]

<?
$startDate = "2010-06-02";
$nextDate = strtotime($startDate. "+2 week");
$format = '%Y-%m-%d';
echo strftime($format,$nextDate);
?>

Live example of above code.

Update

Hello everyone!

Here are a few things I’m currently working:

Project 2 @ AyersRd.com ~ This project will access several hundred of the top tech news sites and retrieve the most current stories. The content will be presented as trending news stories. Keep an eye on this project for daily live updates. All changes show the instant code is edited, so you may see anything from a blank page to errors.

I’m looking for a cleaner and faster WordPress template. Any suggestions?

2 new domains have been registered!

AyersCDN.com and AyersRD.com have been registered. My javascript, images, css, etc will be hosted at AyersCDN.com. Feel free to hotlink to any files at AyersCDN.com. AyersRD.com will be the portal to my projects in the works. Projects at AyersRD.com can come and go at any time.

Can’t beat the 1st level of Pac Man on Google’s logo?

Check out my modified version!http://ChadAyers.org/Google.html