Hi,
Is it possible to add an array variable and a variable together?
What I have is a for statement where $i runs from 1-10.
Inside the for statement I have an array variable $row['hometeam'].
What I need to do is add $i to $row['hometeam'], i.e
$hometeam = $row['hometeam''.$i.''];
... so I end up with $hometeam = $row['hometeam1'] through to $row['hometeam10']
But I dont think the above code will work!
Thanks for any help in advance.