I can't seem to get these values to pass to the next page, any ideas? I know this is normally simple but i'm lost with it now. Need some fresh eyes:
Soil Level should be a number. I can echo it on the page, BUT when i pass it to the next page it's just blank.
echo "<form name='form' action='addproductscript.php?soillevel=$ProductName' method='post'><table>\n";
$productsql = "SELECT * FROM soillevel WHERE soillevel LIKE '$trimmed'";
$productResults = mysql_query ($productsql);
$productRow = mysql_fetch_array ($productResults);
$ProductName = $productRow['soillevelID'];
echo "</table><input type='submit' name='Submit' value='Add New Product'>
</form>\n";