There is a code:
$myatk = mysql_query("SELECT * FROM atk WHERE name='".$_GET['value']."' "); $atk = mysql_query($myatk); $mysql = mysql_query("SELECT * FROM user_pokemon WHERE username='".$_SESSION['username']."' and start='$on'"); $row = mysql_fetch_array($mysql); The question is how to do this:
$uron = $row['$atk['type']'];
$uron = $row[$atk['type']];but I wonder where is the logic? - Palmervan