.
PREMIUM FEATURES
Bookmark player Roster player Stats Card Export Player

Pierre-Luc Dubois

  • Position
    C/LW
  • Height
    6'3" / 191 cm
  • Weight
    218 lbs / 99 kg
  • Shoots
    L
  • Contract
    30/31

A phenominal two-way power forward who thrives under pressure. He brings versatility, being able to play as a center or a winger, as well as elite skill and agility. His athleticism is exemplified in his strong skating that allows him to backcheck hard, explode up the ice in-transition, or propel himself up into hits that opponents won't soon forget. His defensive zone play is excellent; he proactively finds and takes away shooting and passing lanes, and makes it tough on opponents to pinpoint any daylight. When he is on the ice, he is uncontainable and leads the forecheck; he creates the time and space for himself to be creative with the puck and finds a way to get it to the back of the net. He makes the players around him better, serving as an example of what hard work and skill can and will be able to produce.

A similarly punishing two-way forward with size and zero deficiencies, Anze Kopitar, is the type of player Dubois will aspire to become at the next level. Pierre-Luc Dubois has the potential to develop into an elite two-way forward who excels as a positive catalyst in every facet of the roles he can play, be it the dynamic scorer, the set-up man, the intimidating power forward, or the defensive-minded shutdown guy. He is the type of player nobody likes to play against. (Curtis Joe, EP 2016)


Father: Éric Dubois

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=252480" width="100%" height="580" 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=252480" width="100%" height="580" 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=252480
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats.php?player=252480', 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=252480
<?php
$rss = new SimpleXMLElement('https://www.eliteprospects.com/rss_player_stats2.php?player=252480', 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)