|
If i do that i get an error saying $ga can't be found and then the #
[PHP]
for($i=1; $i<= $numberofgaquestions; $i++ ){
echo "Ga # $i:". $ga.$i ."<br>";
}
[/PHP]
Here is what i get:
Notice: Undefined variable: ga in /final_hr_attributes_7.php on line 329
Ga # 1:1
Notice: Undefined variable: ga in /final_hr_attributes_7.php on line 329
Ga # 2:2
Notice: Undefined variable: ga in /final_hr_attributes_7.php on line 329
Ga # 3:3
What i need is to form the variable $ga1 with this [php]echo "Ga # $i:". $ga.$i ."<br>";[/php]
But thanks for your help
|