.
PREMIUM FEATURES
Bookmark player Roster player Stats Card Export Player

Joe Hulbig a.k.a. "Joseph Allan Hulbig"

  • Position
    LW
  • Height
    6'3" / 191 cm
  • Weight
    214 lbs / 97 kg
  • Shoots
    L
  • Status
    Retired

Hulbig had risen up Central Scouting’s rankings as the 1991-92 season played out; in January he was ranked as the 22nd-best North American skater and by May he was 10th on the list. Even so, there were warning signs. Hulbig played just 17 games of high school hockey in his draft year – a shoulder injury knocked him out of the lineup – and that represented two problems. The first was that Hulbig didn’t play very much, reducing the number of times scouts could see him. The second was that Hulbig was playing at a terrible level, making judgement difficult. He was slated for college hockey, joining Providence following the draft.

Almost immediately, the Oilers must have known there was a problem. In his first year at Providence, Hulbig scored just three times and finished with 16 points in 26 games. Hulbig did pick up the pace eventually, scoring at the point-per-game level over his final two seasons. He’d earn a few NHL cups of coffee over the ensuing years thanks to strong play in the minors. The problem, though, was that he was essentially finished developing offensively at the age of 23.

On November 9, 2000 he suffered a career-threatening head injury. During his recovery, it was also determined that nagging abdominal injuries required significant surgery. He eventually came back, but never returned to NHL, finishing his career in the minors being only 31 years old.

Daughter: Gretta Hulbig

My days of blooming into a 30- or 40-goal scorer, I don’t think are coming , Joe Hulbig 2002
If I’m going to make it, I’m going to have to be a third or fourth liner in the NHL and be counted on not to make a mistake, Joe Hulbig 2002
Scouts say he is a future blend of Kevin Stevens and Cam Neely, Kevin Paul Dupont 1992
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=39282" width="100%" height="415" 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=39282" width="100%" height="415" 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=39282
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats.php?player=39282', 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=39282
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats2.php?player=39282', 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)