Jump to content

how would i


ccrevcypsys

Recommended Posts

I have a comment system on my web site. And i need to be able to edit the comment if it is my own comments like. I posted a comment and wish to edit or delete it. How would i get this to work if i dont want other people deleting mine or other peoples messages.

Here is the code i am using.

                <table width="100%" border="0" cellspacing="0" cellpadding="4" class="tblList">
                  <tr class="songTitle">
                    <td width="20%">Time</td>
                    <td width="30%">Comment</td>
                    <td width="20%">Mood</td>
                    <td width="20%">Customer</td>
                    <td width="20%">Delete\Edit</td>
                  </tr>
                  <?php 
                  if($results == TRUE){
                    
                    for ($i=0; $i<count($results); $i++){ 

                  ?>
                  <tr>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['time']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['comment']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['mood']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText">
<?php echo $results[$i]['customer_id']; ?></span></td>
                     <?php if($_GET['customer_id']==$db->mySQLSafe($_POST['edit']) ){ ?>
                    <td align="center" width="10%" class="tdlisting"><a href="?delete=<?php echo $results[$i]['comment_id']; ?>" class="txtLink">Delete</a>\<a href="?edit=<?php echo $results[$i]['comment_id']; ?>&customer_id=<?php echo $results[$i]['customer_id']; ?>&productId=<?php echo $results[$i]['productId']; ?>&comment_id=<?php echo $results[$i]['comment_id']; ?>" class="txtLink">Edit</a>
                    </td>
				<?php }else{ echo 
				'<td align="center" width="10%" class="tdlisting">
				Nope!
				</td>';}?>
                   </tr> 
                   <?php } // end loop ?>
                  </table>

Link to comment
Share on other sites

Have you already a login system in place? If so, all you need do is validate your login credentials against the owner of the comment. eg;

 

<?php

  if ($_SESSION['uid'] == $row['comments_user_id'])) {
    // edit.
  } else {
    echo "you are not permitted to edit this comment";
  }

?>

Link to comment
Share on other sites

so i changed it to this

                 <?php if($_SESSION['customer_id'] == $row['customer_id'] ){ ?>
<td align="center" width="10%" class="tdlisting">
<a href="?delete=<?php echo $results[$i]['comment_id']; ?>" 
class="txtLink">Delete</a>
\
<a href="?edit=
<?php echo $results[$i]['comment_id']; ?>&customer_id=<?php echo $results[$i]['customer_id']; ?>&productId=<?php echo $results[$i]['productId']; ?>&comment_id=<?php echo $results[$i]['comment_id']; ?>" 
class="txtLink">Edit</a>

but it still loaded up the edit button and delete button for customer #33 and im customer #31.

 

Link to comment
Share on other sites

ok well i tried that. and i also tried to make the "$row" $results[$i]['customer_id'] but it now wont let me edit or delete again. When i did the if($_SESSION['customer_id'] == $row['customer_id']) it showed the edit/delete up but it let me edit everyones from a customer acct.

Link to comment
Share on other sites

Maybe

 

see comments

                <table width="100%" border="0" cellspacing="0" cellpadding="4" class="tblList">
                  <tr class="songTitle">
                    <td width="20%">Time</td>
                    <td width="30%">Comment</td>
                    <td width="20%">Mood</td>
                    <td width="20%">Customer</td>
                    <td width="20%">Delete\Edit</td>
                  </tr>
                  <?php 
	 //updated
                  if($results > 0){
                    
                    for ($i=0; $i<count($results); $i++){ 

                  ?>
                  <tr>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['time']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['comment']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText"><?php echo $results[$i]['mood']; ?></span></td>
                    <td align="center" class="tdlisting"><span class="copyText">
<?php echo $results[$i]['customer_id']; ?></span></td>
                     <?php
				 //changed
				 //if($_GET['customer_id']==$db->mySQLSafe($_POST['edit']) )
				 //I think.. kinda hard to read your code
				 if($_GET['customer_id']==$db->mySQLSafe($_POST['edit']) && $_GET['customer_id']==$results[$i]['customer_id'] )
				 { ?>
					<td align="center" width="10%" class="tdlisting"><a href="?delete=<?php echo $results[$i]['comment_id']; ?>" class="txtLink">Delete</a>\<a href="?edit=<?php echo $results[$i]['comment_id']; ?>&customer_id=<?php echo $results[$i]['customer_id']; ?>&productId=<?php echo $results[$i]['productId']; ?>&comment_id=<?php echo $results[$i]['comment_id']; ?>" class="txtLink">Edit</a>
                    </td>
				<?php
				}else{
				echo '<td align="center" width="10%" class="tdlisting">
					Nope!
					</td>';}?>
                   </tr> 
                   <?php 
			   } // end loop ?>
                  </table>

Link to comment
Share on other sites

ok here is is.

 

they are logged in thru the sessions page. There is 2 includes that are on this page to let the page know that they are logged in.

 

include_once("../includes/sessionStart.inc.php");

include_once("../includes/session.inc.php");

now i use these data base names for the comment page and the session page

This is the comment db

  • comment_id
  • customer_id

this is the session db

  • sessid
  • customer_id

(well there is more than this but i dont think those others matter)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.