Hi,
Instead of doing this:
$sql = mysql_query("SELECT * FROM content WHERE cat = '$cat'");
$row = mysql_fetch_array($sql);
$sql_menu = mysql_query("SELECT * FROM menu_der WHERE lang cat = '$cat'");
$row_menu = mysql_fetch_array($sql_menu);
echo $row_menu[cat];
echo $row[cat];
How could I simplfy the query and after display the results from one table or the other??
10000 thx in advanced!!