I uninstalled and reinstalled DataBridge, because I didn't see where to enter a value (sorry, took a while).
Now I cannot choose a different table for the child menu. I am guessing this is, because the size table should be part of the recordset rsversion?
This is rsversion:
$varproductid_rsversion = "-1";
if (isset($_GET['recordID'])) {
$varproductid_rsversion = $_GET['recordID'];
}
$varlanguageID_rsversion = "1";
if (isset($_SESSION['languageID'])) {
$varlanguageID_rsversion = $_SESSION['languageID'];
}
mysql_select_db($database_connSegufix, $connSegufix);
$query_rsversion = sprintf("SELECT DISTINCT tblversion.version_id, tblversion.version, tblversion.version_description, tblversion.version_compound FROM tblprice INNER JOIN tblversion ON tblversion.version_id = tblprice.version_id WHERE tblprice.product_id = %s AND tblversion.language_id = %s", GetSQLValueString($varproductid_rsversion, "int"),GetSQLValueString($varlanguageID_rsversion, "int"));
$rsversion = mysql_query($query_rsversion, $connSegufix) or die(mysql_error());
$row_rsversion = mysql_fetch_assoc($rsversion);
$totalRows_rsversion = mysql_num_rows($rsversion);
Where am I going wrong?