Hey guys, I've been kicking this around a bit now, and I'm running into the problem of setting a Variable variable..
Trying to figure this out,
$i=0;
while ($myrow = mysql_fetch_array($result)){
$i++;
$VarName="feature$i";
$VarNameContents=${$VarName};
// HOw do I do this next line? Right now, it
// sets that Variable to the Data, not the
// Variable Variable...
$VarNameContents=$myrow[DataForVarContents];
}
Thanks
-Paul
(Remove ANTISP@M to Email)