Simon: bekomme bei MySQL Abfrage, keine Daten obwohl vorhanden

Beitrag lesen

Hallo,

Ich versuche mit untenstehendem Code Daten aus einer MySQL DB zu ziehen.
Auf error report=0, bring er mir keine Fehlermeldung, aber auch keine Daten.

Zudem haba ich jedes einzelne Feld auf Schreibfehler überprüft, aber ich finde keinen.

Kann hier jemand helfen?

Ich wäre sehr dankbar.

Mit besten Grüssen,

Simon

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<?php
include("login.php");
$bstgroup = "SELECT * FROM bstgroup";
$bgroup2=mysql_query($bstgroup);
?>
<html>
<head>
<title>BST Users - User Overview</title>
<link href="tech/style2" rel="stylesheet" type="text/css" />
</head>

<body>
<Div class="left_column">
<ul>
<li><a href="">Ticketcenter</a></li>
<li><a href="">Contacts</a></li>
<li><a href="">Companies</a></li>
<li><a href="">Standard Products</a></li>
<li><a href="">Interfaces</a></li>
<li><a href="">News</a></li>
<p class="link_active">BST Users</p>
<li>New User</li>
<li>View Existing Users</li>
<li><a href="">Search</a></li>
<li><a href="">Logout</a></li>
</ul>
</Div>
<Div class="container">
<p>Please enter employee information below</p>
<?php
include("login.php");
$sql = "SELECT BSTID, bstlast, bstfirst, BSTGID, phoneint, phonemob, bstmail, phonehome, bstadress, bstadress2,bstpostcode, bstcity, bstcountry FROM bstusers SORT BY bstmail";
$result=mysql_query($sql);
?>
<table>
<tr>
 <td><b>Last Name</b></td>
 <td><b>First Name</b></td>
    <td><b>Group</b></td>
    <td><b>Int. No.</b></td>
    <td><b>Mobile</b></td>
    <td><b>Email</b></td>
 <td>&nbsp;</td>
 <td>&nbsp;</td>
    <td>&nbsp;</td>
</tr>
<?php
while ($row = mysql_fetch_array ($result))
{
?>
<tr>
<td><?php echo $row["bstlast"] ?></td>
<td><?php echo $row["bstfirst"] ?></td>
<td><?php echo $row["BSTGID"] ?></td>
<td><?php echo $row["phoneint"] ?></td>
<td><?php echo $row["phonemob"] ?></td>
<td><?php echo $row["bstmail"] ?></td>
<td>View</td>
<td>Edit</td>
<td>Delete</td>
</tr>
<?php
}
?>
</table>
</Div>
</body>
</html>