foreach($vResponse->return->ratePlans as $ratePlans)
{
$count++;
//Get Plan Id
$v_current_plan_id = "";
$setting_id = "web_desc";
$vQuery = "BEGIN :v_return_val := I3_PRICE_PLAN.get_setting_value(:p_plan_id,:p_setting_id); END;";
$vBoundQuery = OCIParse($vConnection,$vQuery);
OCIBindByName($vBoundQuery,":v_return_val",$v_plan_desc,100);
OCIBindByName($vBoundQuery,":p_plan_id",$ratePlans->ratePlanID,200);
OCIBindByName($vBoundQuery,":p_setting_id",$setting_id,200);
OCIExecute($vBoundQuery);
?>
<option value="<?php echo $ratePlans->ratePlanID; ?>"><?php echo $v_plan_desc; ?></option>
<?php } ?>
</select>
<?php if(isset($_GET['plan']))
{ ?>
<script>document.getElementById('selectedplan_id').value = '<?php echo $_GET['plan'];?>';</script>
<?php } ?>
|