# HG changeset patch # User paulo@twcdns.fastsearch.net # Date 1279696314 25200 # Node ID 561c0b0f3234426d603a1c5e4a8809df365f4240 initial add diff -r 000000000000 -r 561c0b0f3234 index.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/index.php Wed Jul 21 00:11:54 2010 -0700 @@ -0,0 +1,59 @@ + + +
+ + +' . $caption . '
' . "\n"; + } + + break; + } + } + break; + } + } + } +?> diff -r 000000000000 -r 561c0b0f3234 pics/index.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pics/index.php Wed Jul 21 00:11:54 2010 -0700 @@ -0,0 +1,31 @@ + + + + + + ++This was me (Paulo Ang) and a couple of friends (Vinh Huynh, Daniel Rohrlick) riding our bikes from Santa Ana to Newport Beach to San Diego on the weekend of October 2-3, 2009. +
+ + + ++Trying to figure out if you can reuse those Thule fit kit rubber pads or mounting brackets on another car? Here's a database you can check, with PDF installation instruction manuals. +
+ +Kit Number | +Cars | +Rubber Pad Number | +Bracket Number | +Miscellaneous Parts | +' . $row['kit_id'] . ' | '; + echo '';
+ $cars = explode(';', $row['car']);
+ foreach ($cars as $car)
+ echo $car . ' '; + echo ' | ';
+ echo '' . $row['rubber_pad'] . ' | '; + echo '' . $row['bracket'] . ' | '; + echo ''; + $misc = explode(',', $row['misc']); + foreach ($misc as $misc_item) { + if ($misc_item) { + $misc_item = trim($misc_item); + $misc_filename = 'misc_' . $misc_item . '.png'; + if (file_exists($misc_filename)) + echo ' '; + else + echo $misc_item . ','; + } + } + echo ' | '; + echo '' . "\n"; + } + + mysql_free_result($results); + mysql_close($link); + +?> + +
---|