Guma: SQL- Selectabfrage - ist hier while{} nötig?

Beitrag lesen

Hallo dedlfix,
die variablen hole ich so rein...
<? // Übernahme der Get Global-Variablen für PHP
if (! ($li_id=$_GET['id'])){$li_id="";}

// Select-Abfrage
include_once "config.php";
@mysql_connect($dbhost, $dbuser, $dbpass) OR die(mysql_error());
mysql_select_db($dbname) OR die(mysql_error());
$sql = "SELECT * FROM firma WHERE li_id='$li_id'";

$result = mysql_query($sql) OR die(mysql_error());

// Ausgabe funktioniert ohne While bei mir nicht!
echo $result['li_name'] . '<br>';
?>

Wiso bekomme ich denn keine Ausgabe?

Grüße von Guma