I have a variable named "$autovalue" . My another variable called $row1 and I want it to contain the value of "$autovalue" with a "_1" so that when I echo the $row1 it looks like this: 2011_1 (here 2011 is the value of $autovalue and " _1 " is what I want to include). I tried the following method but it is not working.
Could you please tell me how to achieve this ?
Thanks in Advance :)
$autovalue=mysql_insert_id();
$row1=$autovalue.""._1;
$row2=$autovalue.""._2;
$row3=$autovalue.""._3;
$row4=$autovalue.""._4;