I am installing Zend server and framework on my Linux box. I have already installed git and cloned the phpokc project. If I can get a basic framework going, I will be happy.
Archive for the ‘Web Design’ Category
Installing Zend on Linux
Thursday, February 18th, 2010Going to PHP group
Monday, January 25th, 2010I 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
Thursday, January 21st, 2010This is pretty handy!
New Website
Wednesday, January 20th, 2010I 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
Tuesday, January 19th, 2010Testing 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";
}
}
