Jump to content
php.lv forumi

Divu tabulu takā savienošana


Vecteevs

Recommended Posts

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 by Vecteevs
Link to comment
Share on other sites

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 ! =)

Link to comment
Share on other sites

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 by Vecteevs
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...