Вот такая проблема: Вот код запроса он работает
[code]
$unit='unit';
$qr_result = mysql_query("select * from " . $unit)
or die(mysql_error());
...
while($units = mysql_fetch_array($qr_result)){ ...}
[/code]
Он все работает!
Как зделать так чтобы выводились только те строки в которых в поле "typ" стоит значение "1"????
<?php
$qr_result = mysql_query("select * from " . $unit . " where typ = '1'"
or die(mysql_error());
?>
$unit='unit';
$qr_result = mysql_query("select * from " . $unit ." WHERE `typ`='1')
or die(mysql_error());
...
while($units = mysql_fetch_array($qr_result)){ ...}