Archive for January, 2010

Going to PHP group

I will be attending the PHP Okc group tomorrow to listen to a discussion on local testing environments and version control.

update:
The meeting was good, we discussed using github as a collaboration repository and an easy way to do version control. The decision was made to rebuild the group website using Zend framework in order to give us some practice. We will be using github for our repository on this project as well.

<?php echo 'Hello OKC!'; ?>

Testing iPhone app for wordpress

This is pretty handy!

New Website

I have changed the site yet again! I don’t have a lot of time on my hands to completely build my own, I build web-sites all day, so here is my place to post what I think is cool, whether it be some code I have been working on or interesting articles.

Input Validation

Testing this highlighter

/********************** Input Validation ***********************/
function pwdChk(pass)
{

var p1=document.getElementById("primary-password").value;
var p2=document.getElementById("primary-password2").value;
if (p1 !== p2)
{

document.getElementById("pwdChk").setAttribute('style', 'display:block;');
document.getElementById("pwdChk").style.display="block";
document.getElementById("primary-password2").value='';

}else{

document.getElementById("pwdChk").setAttribute('style', 'display:none;');
document.getElementById("pwdChk").style.display="none";
}

}

Return top

INFORMATION

Change this sentence and title from admin Theme option page.