Jump to content

A simple question...


Chevy

Recommended Posts

It is really early and I need to figure out a problem I am having...here is my code:
[code]
<?php
session_start();

if ($_SESSION['logged']==yes){}else {echo "Please login!";exit;}

mysql_connect("localhost", "_real", "hidden") or die(mysql_error());
mysql_select_db("_real") or die(mysql_error());

$username = $_SESSION['username'];
$id = $_GET['id'];
$topicid = $_GET['topicid'];

$query = "SELECT * FROM reply WHERE topicid='$topicid' AND groupid='$id'";
$result = mysql_query($query) or die(mysql_error());
$query2 = "SELECT * FROM users WHERE username='$username'";
$result2 = mysql_query($query2) or die(mysql_error());
$user = mysql_fetch_array($result2);

echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\">";
while($main = mysql_fetch_array($result)){
echo '<tr><td style="border:1px solid black;" width="100">
<center>';
echo "<b>";echo $main['poster'];echo "</b><br>";
echo "<img src=\"";echo $user['avatar'];echo "\"><br>
Posts: <b>";echo $user['posts'];echo "</b>
</center></td>";

echo '<td style="border:1px solid black;" width="450">';
echo "Posted On: <i>";echo $main['time'];echo "</i><hr>";
echo $main['message'];
echo "</td></tr>";
}
echo "</table>";
?>
[/code]

Okay now when the user posts it adds 1 to a table called users, but they are all the same for every user when it shows up on the page (the post count is the same) and help?

Yes I know my code is messy  ;D
Link to comment
Share on other sites

How are you tracking the number of posts a user makes?

Cleaner, more readable version:

[code]<?php
session_start();

if ($_SESSION['logged'] != "yes"){
echo "Please login!";
exit;
}

mysql_connect("localhost", "_real", "hidden") or die(mysql_error());
mysql_select_db("_real") or die(mysql_error());

$username = $_SESSION['username'];
$id = $_GET['id'];
$topicid = $_GET['topicid'];

$query = "SELECT * FROM reply WHERE topicid='$topicid' AND groupid='$id'";
$result = mysql_query($query) or die(mysql_error());

$query2 = "SELECT * FROM users WHERE username='$username'";
$result2 = mysql_query($query2) or die(mysql_error());

$user = mysql_fetch_array($result2);

echo "
<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\">";

while($main = mysql_fetch_array($result)) {
echo '
<tr>
<td style="text-align: center; border:1px solid black;" width="100">
<b>' . $main['poster'] . '</b><br>
<img src="' . $user['avatar'] . '"><br>
Posts: <b>' . $user['posts'] . '</b>
</td>
<td style="border:1px solid black;" width="450">
Posted On: <i>' . $main['time'] . '</i><hr>
' . $main['message'] . '
</td>
</tr>';
}

echo "</table>";
?>[/code]
Link to comment
Share on other sites

[code]
if (isset($_POST['submit'])){
mysql_query("INSERT INTO reply
(groupid, topicid, poster, message, time) VALUES('$groupid', '$topicid', '$username', '$message', '$time') ");

$posts = $user['posts']++;

mysql_query("UPDATE users SET posts='$posts' WHERE username='$username'")
or die(mysql_error());
}


[/code]
Link to comment
Share on other sites

Try this:

[code]<?php
session_start();

if ($_SESSION['logged'] != "yes"){
echo "Please login!";
exit;
}

mysql_connect("localhost", "_real", "hidden") or die(mysql_error());
mysql_select_db("_real") or die(mysql_error());

$username = $_SESSION['username'];
$id = $_GET['id'];
$topicid = $_GET['topicid'];

$query = "SELECT * FROM reply LEFT JOIN users where reply.poster = users.username WHERE topicid='$topicid' AND groupid='$id'";
$result = mysql_query($query) or die(mysql_error());

echo "
<table border=\"0\" cellspacing=\"1\" cellpadding=\"1\">";

while($main = mysql_fetch_array($result)) {
echo '
<tr>
<td style="text-align: center; border:1px solid black;" width="100">
<b>' . $main['poster'] . '</b><br>
<img src="' . $main['avatar'] . '"><br>
Posts: <b>' . $main['posts'] . '</b>
</td>
<td style="border:1px solid black;" width="450">
Posted On: <i>' . $main['time'] . '</i><hr>
' . $main['message'] . '
</td>
</tr>';
}

echo "</table>";[/code]

You were using the same user info for all of the replies.
Link to comment
Share on other sites

Hmm I am getting this error

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where reply.poster = users.username WHERE topicid='1' AND groupid='1'' at line 1
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.