hi, i want to add 2 string together, here's the code i am using
while (list($name,$value) = each($_POST)){
$$name = $value;
echo $name;
echo " ";
if ($value == ""){
$$value = false;
if ($$value == false) {
$$value = $name + "error";
echo $$value;
}
}
}
[code=php]
i want to add the $name and the word error to the end of it, but this does not seem to work, can anybody help me please?
many thanks