Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6216683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:17:35+00:00 2026-05-24T07:17:35+00:00

I currently have a guestbook style thing that users post comments. Their username is

  • 0

I currently have a guestbook style thing that users post comments. Their username is stored in a cookie when logged on, and when a post is submitted their username is stored alongside their post in a mySQL database. I’m trying to remove the delete button next to the comment if the user logged in is not the one that posted it. Here is the nonworking code:

        <?php
        $username = $_COOKIE['sqlusername'];
        mysqlLogin();

        $sql = mysql_query("SELECT * FROM `posts`");
        $sqlCnt = mysql_num_rows($sql);

        if($sqlCnt != 0) {
            echo "<table align='center'><tr><td class='tdno'><u><H4>Message</H4></u></td><td class='tdno'><u><H4>Poster</H4></u></td><td class='tdno'><u><H4>Time</H4></u></td></tr>";
            while($row = mysql_fetch_array($sql)) {
                if($row['username'] != $username) {
                    echo "<script type=\"text/javascript\">";
                    echo "document.getElementById('delete').innerHTML = \"\";";
                    echo "</script>";
                }
                $id = $row['id'];
                echo "<form action='delete.php' method='POST'>";
                echo "<tr><td>";
                echo $row['message'];
                echo "</td><td>";
                echo $row['poster'];
                echo "</td><td align='center' width='10'>";
                echo $row['date'];
                echo "<td align='left' width='1'>";
                echo "<input type='hidden' name='id' value='$id'>";
                echo "<span id='delete'><input type='submit' class='submit' value='Delete'></span>";
                echo "</td></tr>";
                echo "</form>";
            }
            echo "</table>";
        } else {
            echo "<div align='center'>Sorry, no posts found!</div>";
        }
    ?>

Any thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T07:17:36+00:00Added an answer on May 24, 2026 at 7:17 am

    Try:

              if ($username == $row['poster']) {
                echo "<input type='hidden' name='id' value='$id'>";
                echo "<span id='delete'><input type='submit' class='submit' value='Delete'></span>";
              } else {
                echo " "
              }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We currently have an application that sends out SMS to users, it acts like
I currently have an MS Access application that connects to a PostgreSQL database via
I currently have a DetailsView in ASP.NET that gets data from the database based
I currently have a closure table used for hierarchical data that has 5 million
I currently have a web application that is utilizing Spring Security hosted on a
Currently I have the following code for a project that represents some probability trees
I currently have the following code that retrieves data from the database and then
Currently have a form with a ListView. Users of role A get an image
I currently have a database that consist of many linked objects. Simplified with less
I currently have a single jQuery script page that I include in my ScriptManager

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.