I am using a PHP array to gather user input that has been added to my MySQL database. As this is information from user input I am using a variable created by the num_rows in my database to determine the number of times a for loop runs through displaying my array values. The for loop contains a form that displays one value of the array, and a "like" button (type=submit), and repeats this form until all values have been displayed (from newest to oldest), with a "like" button following each.
I want users to be able to click the "like" button, to add a "like" to that post. The problem I've run into is that the code I have is adding a "like" to every post (because the code checks to see if the "like" button has been pressed, and since the "like" button was created by the for loop, every "like" button has the same name). I've tried to rectify this by giving the "like" button a name based on an incremented variable, but the button does not seem to work if the name is a variable or an array.
Here is my code:
<?php
error_reporting (E_ALL ^ E_NOTICE);
session_start();
$userid = $_SESSION['userid'];
$username = $_SESSION['username'];
$userside = $_SESSION['side'];
echo "<b>Organized posts:</br><hr /></b>";
require("./postconnect.php");
$query = mysql_query("SELECT * FROM original ORDER BY postid ASC");
$numrows = mysql_num_rows($query);
$numrows = $numrows-1;
$sql = "SELECT postername FROM original ORDER BY postid ASC"; // select only the postername field from the table "original"
$result = mysql_query($sql); // process the query
$name_array = array(); // start an array
while($row = mysql_fetch_array($result)){ // cycle through each record returned
$name_array[] = "".$row['postername'].""; // get the postername field and add to the array above
}
$sql = "SELECT post FROM original ORDER BY postid ASC"; // select only the post field from the table "original"
$result = mysql_query($sql); // process the query
$post_array = array(); // start an array
while($row = mysql_fetch_array($result)){ // cycle through each record returned
$post_array[] = "".$row['post'].""; // get the post field and add to the array above
}
$sql = "SELECT posterside FROM original ORDER BY postid ASC"; // select only the posterside field from the table "original"
$result = mysql_query($sql); // process the query
$side_array = array(); // start an array
while($row = mysql_fetch_array($result)){ // cycle through each record returned
$side_array[] = "".$row['posterside'].""; // get the posterside field and add to the array above
}
$sql = "SELECT likes FROM original ORDER BY postid ASC"; // select only the likes field from the table "original"
$result = mysql_query($sql); // process the query
$likes_array = array(); // start an array
while($row = mysql_fetch_array($result)){ // cycle through each record returned
$likes_array[] = "".$row['likes'].""; // get the likes field and add to the array above
}
$i=$numrows;
for($i;$i>=0;$i--) {
if ($side_array[$i]==1) {
$color="red";
}
elseif ($side_array[$i]==2) {
$color="blue";
}
elseif ($side_array[$i]==3) {
$color="green";
}
echo "<form action='./memberhag.php' method='post'>
<table>
<tr>
<td><font color='$color'>$name_array[$i]</font> - $post_array[$i]</td>
</tr>
<tr>
<td><input type='submit' name='likebtn' value='Like' /> <font color=$color>$name_array[$i]</font> has $likes_array[$i] likes!</td>
</tr>
</table>
</form>";
if ($_POST['likebtn']) {
$numlikes = $likes_array[$i];
$numlikes = $numlikes + 1;
mysql_query("UPDATE original SET likes = '$numlikes' WHERE postername = '$name_array[$i]'");
}
}
?>
This has had me stumped for quite a while... I've even tried using a while loop instead of a for loop.
:)– halfer Aug 4 '12 at 11:04