Hey all,

I'm trying to develop a custom shipping module that will choose to ship via freight if the weight is over 150 lbs. Currently, I can connect to the freight shipping company, pull in the XML sheet, get carrier names and prices with no issue. The problem, however, is that I am unsure of how to make these pulled in prices the actual shipping prices on the item. I would rather PM the website link if someone needs to see what is going on, it's very strange.

I'm not positive on how to add in the correct way for the radio buttons, because now if I make them, I just give them values of whatever the price is, but the page comes back to the checkout_shipping, not the payment page. It's stuck

Also..on a side note and not-so-important note, I have enabled UPS and USPS modules, but they don't show up. In fact, I've disabled every shipping module that I have, but Flat Rate, Per Item, and Store Pickup STILL show up. Anyone have a fix for this?

I guess my main question is how do I add the radio buttons to be my shipping prices? I'm able to output them as an array (because I get back multipe prices for shipping), but not use them as the price A snippet looks like this...

Code:
	foreach ($pricesheets as $pricesheet)
	{
	$carriernames = $pricesheet->getElementsByTagName( "CarrierName" );
	$carriername[$cc] = $carriernames->item(0)->nodeValue;
	
	$totals = $pricesheet->getElementsByTagName( "Total" );
	$total[$cc] = $totals->item(0)->nodeValue;
	//echo $carriername[$cc] ." - ".$total[$cc] ." <br />";
	echo "<fieldset>
			<legend>Per Item </legend>
			<div class=\"important forward\">$" . $total[$cc] . "</div>
			<input id=\"shipping\" type=\"radio\" value=".$total[$cc]." name=\"shipping\"/>
			<label class=\"checkboxLabel\" for=\"shipping\">".$carriername[$cc]."</label>
			<br class=\"clearBoth\"/>
			</fieldset>";
	$cc = $cc+1;
$carriername = The Carrier name - "UPS Freight, etc.."
$total = Price for the selected carrier.

Thanks In Advance!