I have the required ID variable from this, (there are 1-6 possible values):
$new_product['ID'] =$row[2];
What I need is to echo a separate 'php-include' depending on this variable, so something like:
<?php include 'includes/size/prod/echo $row[2].php'; ?>
which would display, includes/size/prod/1.php, includes/size/prod/2.php etc
I don't understand how to phrase the 'echo' within the php.