Hi guys i'm building a booking system on my website. Now i have list of the equipment, which i'm obviously displaying along with small input object, where people can type in quantity of each peace of kit they want.
<input type=\"hidden\" name=\"n$id\" value=\"$name\" /><input type=\"text\" name=\"quantity$id\" size=\"1\" />
then on the next step i have
do {
if($$quantity == "") { }
else {
echo $$quantity . ' x ';
echo $$gear_name . '<br />'; }
$n++; } while ($n <= $max);
So after filling quantity, people can see what order they've just placed. Now i want to send that with the email to the myself, but this:
$message .= " $$quantity x $$gear_name ";
doesn't work. So i can't do anything other than displaying with echo that 2 variable variables. How to do this anybody knows ? If you have any ideas i would appreciate
Thanks a lot