Brendan O'Donnell

-
Date of Birth
-
Age26
-
Place of Birth
-
Nation
-
Youth Team-
-
PositionC/LW
-
Height6'0" / 183 cm
-
Weight185 lbs / 84 kg
-
ShootsL
-
Contract18/19
Example use
- Blogs
- Articles
- Team websites
Implementation
Insert the code at the location where you wish the player statistics to show.
HTML Code
If Regular season + playoffs is too wide.
Preview
HTML Code
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.
https://www.eliteprospects.com/rss_player_stats.php?player=40229
$rss = new SimpleXMLElement('http://eliteprospects.com/rss_player_stats.php?player=40229', null, true);
foreach($rss->xpath('channel/item') as $item) {
echo utf8_decode($item->description);
}
?>
https://www.eliteprospects.com/rss_player_stats2.php?player=40229
$rss = new SimpleXMLElement('http://eliteprospects.com/rss_player_stats2.php?player=40229', 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) |