Code: Select all
echo"$priceIn";
$newVariable = $priceIn;Thanks,
Archy
Moderator: General Moderators
Code: Select all
echo"$priceIn";
$newVariable = $priceIn;Code: Select all
$variable = function($otherVariable);Code: Select all
function add_foo($text) {
$new_text = $text . 'foo';
return $new_text;
}
$text = 'some text';
echo add_foo($text); // some textfoo