I am relativly new to php and my ideas are getting ahead of my abilities. I am trying to get two variables to combine and become and entirely independent thrid variable.
This is what I have so far....
$plan_set_up_nearo = '0.00';
if ($bill_cycle == "1")
{
$base = '$plan_set_up_';
$combined = $base.$hosting_plan;
$set_up_fee = $combined;
echo "$combined";
} else {
echo "something else";
}
The variable $hosting_plan is sent to the above code with the value of nearo
My goal is for $combined to echo as 0.00, but
it outputs with the value $plan_set_up_nearo
I don't get it, any ideas?