PHP On Copyright Year

by travis, October 09, 2007 14:57

d'oh, i forgot a ';' :-(

918aabb05e77cfa8e40d2a76a5168326 Talk
1
2
3
Copyright &copy; 2007<?php
echo (intval(date('Y')) != 2007) ? date(' - Y') : '')
?> - All Rights Reserved - Design by scott2010_h

PHP On Copyright Year

by travis, October 09, 2007 14:56

Why even bother with concat...

918aabb05e77cfa8e40d2a76a5168326 Talk
1
2
3
#someSelector
...

JavaScript On ucfirst

by travis, October 09, 2007 14:51 Star_fullStar_fullStar_full

There is a way to do this w...

918aabb05e77cfa8e40d2a76a5168326 Talk

JavaScript On Simple Form Validation

by travis, October 04, 2007 07:09

oops, the button should be ...

918aabb05e77cfa8e40d2a76a5168326 Talk
1
2
3
$(function() {
	$("#formID").bind("submit", function() {
...

JavaScript On Simple Form Validation

by travis, October 04, 2007 07:06

You could really reduce you...

918aabb05e77cfa8e40d2a76a5168326 Talk
1
2
3
4
Date.prototype.addDays = function(daysToAdd){
  return this.setDate(this.getDate() + daysToAdd);
}
...

JavaScript On Go Back To Yesterday

by travis, October 01, 2007 11:55 Star_fullStar_fullStar_fullStar_fullStar_full

I would even extend it a bi...

918aabb05e77cfa8e40d2a76a5168326 Talk
1
2
3
  Private Function GetPreviousMonthsXml(ByVal months As Integer, ByVal startDate As Date, ByVal xDoc As XmlDocument, ByVal path As String, ByVal nodeName As String) As XmlDocument
...

VB.NET Load XmlNodeList into an Xm...

by travis, October 01, 2007 08:16, No refactoring, tagged with xml, node, xmldocument, vb, .net, nodelist, asp.net

Basically I'm just try to l...

918aabb05e77cfa8e40d2a76a5168326 Talk