Basically calculates how much you should buy cloth for in order to make profits by crafting and d/e'ing Contender's Silk Cuffs - Item - World of Warcraft
PHP Code:
<?
$shard_price = $_GET['p'];
$bolts = $shard_price/3; // Change the number variable here if you want to craft something different (thats the number of bolts
$cloth = $bolts/5;
$bolts = round($bolts, 2);
$cloth = round($cloth, 2);
echo "Price of your shard: <b>$shard_price</b> gold<br>";
echo "Price per bolt minimum: <b>$bolts</b> gold<br>";
echo "Price per cloth minimum: <b>$cloth</b> gold<br>";
?>
Made that in 5 seconds, you can see it live here: http://ev0.us/cloth/index.php?p=50
Just change the p= in the URL to how much your etheral shards are going for.