.
PREMIUM FEATURES
Bookmark player Roster player Stats Card Export Player

David Wilkie a.k.a. "David John Wilkie"

  • Position
    D
  • Height
    6'3" / 191 cm
  • Weight
    216 lbs / 98 kg
  • Shoots
    R
  • Status
    Retired

David John 'Willy' Wilkie was seen as one of the top upcoming defensive prospects for the 1992 NHL Entry Draft and was selected in the 1st round. However, lack of opportunities from NHL teams, injuries and very early retirement never allowed him to fulfill his potential. The following season after the draft, Wilkie returned to the WHL and made his international debut representing the United States in the 1993 WJC. Next season he played the majority of the year with the Fredericton Canadiens of the AHL while also making his NHL debut, appearing in one game with Montreal Canadiens. The following season, he split time with Fredericton and Montreal. The 1996–97 season saw Wilkie make the Montreal Canadiens full-time, appearing in 61 games and scoring 15 points, both NHL career highs.

He was then traded to the Tampa Bay Lightning, but injuries would hamper Wilkie in his time with the new team. After two miserable seasons he signed with the New York Rangers, but again ended up playing the majority of the time in the minors.

For the 2001–02 season, Wilkie signed with the Augusta Lynx of the ECHL as a player-coach. After one season with the Lynx, Wilkie retired as a player in 2002. Since then he works as a coach mainly for junior teams.

Family relations
Sons: Chris Wilkie & Coltan Wilkie

Team Staff profile of David Wilkie also available

His success both on the ice, and advancing players to the next level, speaks for itself. He knows what it takes to win., Koots DiCesare 2017
I am excited about the opportunity and am very much looking forward to the challenge., David Wilkie 2017
There comes a point in time you have to realize when an opportunity is presented before you, there are life decisions you have to make., David Wilkie 2003
I saw him come up as a player with the Canadiens and I thought he was a very smart hockey player, and I figured he was also a smart man. , Larry Kish 2003
IFRAME (simple)

Example use
- Blogs
- Articles
- Team websites

Implementation
Insert the code at the location where you wish the player statistics to show.

Regular season + playoffs
Preview

HTML Code

<iframe src="https://www.eliteprospects.com/iframe_player_stats.php?player=54764" width="100%" height="460" scrolling="no" frameborder="0"></iframe>
Only Regular season

If Regular season + playoffs is too wide.

Preview

HTML Code

<iframe src="https://www.eliteprospects.com/iframe_player_stats_small.php?player=54764" width="100%" height="460" scrolling="no" frameborder="0"></iframe>
RSS (advanced)

Example use
- Team websites

Implementation
Depending on the technical environment on your server, your programming language etc, you can read/include the statistics in many different ways. Below is an example on how you can include the statistics using PHP.

Note that the first box holds the code for an RSS feed with EP layout, while the second box is unformatted and possible to style after your own preferences using CSS.

EP layout
RSS-feed
https://www.eliteprospects.com/rss_player_stats.php?player=54764
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats.php?player=54764', null, true);
foreach($rss->xpath('channel/item') as $item) {
    echo utf8_decode($item->description);
}
?>
No layout
RSS-feed
https://www.eliteprospects.com/rss_player_stats2.php?player=54764
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats2.php?player=54764', null, true);
foreach($rss->xpath('channel/item') as $item) {
    echo utf8_decode($item->description);
}
?>

To customize the layout of "no layout" option, specify the following following CSS classes on your site:

CSS class to create      HTML tag affected
p_stats <p>
a_stats <a href>
table_stats <table>
tdh_stats <th> (heading)
tr_stats_odd <tr> (odd row)
tr_stats_even <tr> (even row)
td_stats_odd <td> (odd row)
td_stats_even <td> (even row)