Category Archives: Web Technology

Web Technologies as I meet them

thoughts on logins

http://blog.codinghorror.com/the-god-login/   Pretty well thought out some nice ideas

Posted in Uncategorized, web, Web Technology, website creation | Comments Off on thoughts on logins

Adding a Widget Area to a child theme

So I made a Child theme of WordPress’s twenty twelve theme and needed to put a list of links in the footer. fairly standard type of thing you might expect in a website and should be fairly straight forward thing. … Continue reading

Posted in knowledgebase, web, Web, Web Technology, website creation, wordpress, Wordpress | Comments Off on Adding a Widget Area to a child theme

Converting dates in php

converting a date string 09/17/2014 to a unix time stamp and then to a date format to insert into myql as a date <?php $time = “09/17/2014″; echo $time.”<br/>”; $date = strtotime($time); echo $date.”<br/>”; $timestamp=$date; echo gmdate(“Y-m-d”, $timestamp); ?> you … Continue reading

Posted in php, web, Web Technology | Comments Off on Converting dates in php