well i need to create a variable using a mixture of variables and static text...
what i want is: $r#c# where # is any number what i thought i could do is: $.'r'.$rowno.'c'.$columnno = "whatever";
i dout this will work, do i need to use brackets?
dunno about brackets...but you could do something like this
$var = 'r' . $rowno . 'c' . $colno; $$var = "whatever"; echo $$var;
looks good thanks