ReallyPoker.com offers free services and resources for poker affiliates. Currently our most popular feature is the Poker TV Guide which can be seen to the right and very easily implemented on your own website, for free, in a matter of seconds.
There are three different ways to implement the TV guide and all are equally easy. The PHP version is however recommended as it loads the fastest. It also contains a link at the end of the guide to one of our sites to compensate for the service.
The other two methods contain the same link but at the top of the guide instead of at the bottom. This is because with those methods we do not get credited for the link SEO wise.
If you want to use one of those ways of implementing but the link at the top of the guide bothers you then
feel free to link to us somewhere else on your site and contact us, and we will be more than happy to give you a custom version without the link!
PHP (Recommended Method!)

Paste this line into your webpage code:
<? include("http://www.reallypoker.com/tvguide/us/php/"); ?>
IFRAME

Paste this line into your webpage code:
<iframe width=100% height=100% style="border:none;" src="http://www.reallypoker.com/tvguide/us/iframe/"></iframe> (If the height is less than desireable for your specific website then change the height=100% to for example height=800.)
Javascript

Paste this line into your webpage code:
<script src="http://www.reallypoker.com/tvguide/us/java/" type="text/javascript"></script>
If you want your visitors to see the icons for each channel then go ahead and download them below. Note that they must be placed in /channels/ on your webserver.
channels.zip (38.2 KB)
You can of course by using HTML code modify how the IFRAME is displayed if you are using that method, or place the guide inside a TABLE or DIV to further control what it looks like.
If you want to customize it even more then you can
download the CSS, modify it as you please, and place it on your own server. Note that it must be placed in the root (ie www.yoursite.com/tvguide.css) on your webserver.
If you do so you must add /css/ to the method you use to implement the guide otherwise our default css will override it, for example:

<? include("http://www.reallypoker.com/tvguide/us/php/"); ?>
becomes

<? include("http://www.reallypoker.com/tvguide/us/php/
css/"); ?>
If you prefer to display just the upcoming shows for today and tomorrow, instead of the whole week, simply replace the /tvguide/ with /tvshort/, for example:

<? include("http://www.reallypoker.com/tvguide/us/php/"); ?>
becomes

<? include("http://www.reallypoker.com/
tvshort/us/php/"); ?>
To implement the UK or Swedish version instead of the US simply replace the /us/ with /uk/ or /se/, for example:

<? include("http://www.reallypoker.com/tvguide/us/php/"); ?>
becomes

<? include("http://www.reallypoker.com/tvguide/
se/php/"); ?>