Also ich bräuchte eine ilfe hier:
Ich will daten auslesen aus mysql das schaff ich :
<?php
include ('db_login.php');
$link = mysql_connect ($host, $user, $password);
$query = "Select * from $tblname";
$result = mysql_db_query ($dbname, $query, $link);
while ($Row = mysql_fetch_array ($result))
{
print ("$Row[id]");
print (" ");
print ("$Row[text]");
print ("<br>");
}
?>
aber ich habe drei Daten typen = id
ich will das alle per id gereiht werden und nicht nach eintrag!
also
zb.: id1. text
text
id2. text
id2. text
id3. text
id3. text
bitte um Hilfe
mfg jakob
Ich will daten auslesen aus mysql das schaff ich :
<?php
include ('db_login.php');
$link = mysql_connect ($host, $user, $password);
$query = "Select * from $tblname";
$result = mysql_db_query ($dbname, $query, $link);
while ($Row = mysql_fetch_array ($result))
{
print ("$Row[id]");
print (" ");
print ("$Row[text]");
print ("<br>");
}
?>
aber ich habe drei Daten typen = id
ich will das alle per id gereiht werden und nicht nach eintrag!
also
zb.: id1. text
text
id2. text
id2. text
id3. text
id3. text
bitte um Hilfe
mfg jakob
Kommentar