if ( !empty( $_GET['v'] ) )
{
?>
|
= fieldToTitle( $_GET['v'] ) ?>
|
}
else
{
?>
|
Video
Tune into Vancouver View Magazine's exclusive videos brought to you by VancouverBC.com. Watch the latest events taking place in Vancouver B.C.
Click one of the links below to see the event's video:
Powered By:

Club Vibes - Vancouver Night Life Awards
Jet Set Crew - High Roller
Vancouver Signature Interiors
|
|
}
function fieldToTitle( $field )
{
$title = "";
for ( $i = 0; $i < strlen( $field ); $i++ )
{
if ( $field{$i} == strtoupper( $field{$i} ) )
$title .= " ";
$title .= $field{$i};
}
return ucfirst( $title );
}
?>