Vecteevs Posted June 6, 2010 Report Share Posted June 6, 2010 (edited) Sveiki, tātad man ir ir divas tabulas. Vienā attēlots kāds raksts, bet otrā var komentēt to rakstu. Man kā nesanāk parādīt tos komentārus tieši pie tā raksta. Kā īsti būtu jādara? Problēma ir tieši ar komentāriem. Kodu ielikšu lai ja kāds var varētu palabot, bet tur manuprāt viss ir galīgi šķērsām. <?php include ("db.php"); // Get values from form $autors=$_POST['autors']; $komentars=$_POST['komentars']; // Insert data into mysql $sql="INSERT INTO $tbl_name(autors, komentars)VALUES('$autors', '$komentars')"; $result=mysql_query($sql); // if successfully insert data into database, displays message "Successful". if($result){ echo "Komentārs pievienots!"; echo "<BR>"; echo "<a href='raksti.php'>Atpakaļuz rakstiem!</a>"; } else { echo "ERROR"; } mysql_close(); ?> Komentāra pievienošanas kods Komentaru apskatīšanas kods: <?php include("db.php"); // get value of id that sent from address bar $id=$_GET['id']; $sql="SELECT * FROM komentari WHERE id='$id' ORDER BY id DESC" or die(mysql_error()); $result=mysql_query($sql); while($rows=mysql_fetch_array($result)){ ?> <?php echo $rows['komentars']; ?> <?php echo $rows['autors']; ?> <? } mysql_close(); ?> Edited June 6, 2010 by Vecteevs Quote Link to comment Share on other sites More sharing options...
euphoric Posted June 6, 2010 Report Share Posted June 6, 2010 Jo komentārus velc ara pēc `id` - kurš nekādā veidā nav saistīts ar rakstu ! Vienk, pie ievietošanas, attiecīgajam rakstam - attiecīgs identifikātors. Un pie komentāru apskatīšanas tad arī velc ārā pēc tā identifikātora ! =) Quote Link to comment Share on other sites More sharing options...
Vecteevs Posted June 6, 2010 Author Report Share Posted June 6, 2010 (edited) tas ir domāts tā piem, <a href='lapa.php?id=<? echo $rows ['id']; ?>'></a> Šādi uzspiežot uz linka atveras lapa kur var pievienot komentarus tad lai komentāri rādītos jāraksta <a href='lapa.php?id=<? echo $rows ['id'];?>?komentaraid=<? echo $rows ['komentaraid'];?>'></a> kā tā? Edited June 6, 2010 by Vecteevs Quote Link to comment Share on other sites More sharing options...
TrAkA1s Posted June 6, 2010 Report Share Posted June 6, 2010 SELECT * FROM table WHERE id ='$_GET[id]' Quote Link to comment Share on other sites More sharing options...
Vecteevs Posted June 6, 2010 Author Report Share Posted June 6, 2010 SELECT * FROM table WHERE id ='$_GET[id]' tā nu gan nebūs :( Quote Link to comment Share on other sites More sharing options...
anonīms Posted June 6, 2010 Report Share Posted June 6, 2010 izveido kollonu jaunuma_id un tur arī pieglabā ?id=? un where jaunuma_id = $_GET['id'] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.