Going to PHP group
by Ryan Lang on Jan.25, 2010, under Web Design
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
by Ryan Lang on Jan.21, 2010, under Web Design
This is pretty handy!
New Website
by Ryan Lang on Jan.20, 2010, under Web Design
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
by Ryan Lang on Jan.19, 2010, under Web Design
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";
}
}
