variable built from variables
Posted: Tue Jun 14, 2005 5:38 am
I want do to this:
make a variable from 2others
Is this possible?
make a variable from 2others
Code: Select all
//existing
$first = $second2text;
//i have the variable
$_POST['number'];
// i want to put them together in the form
$first = $second$_POST['number']text;
//with the $_POST['number'] replacing the 2 in the first line