But It only succeed with one item but I would like to have it with all items 6 rows
<?php echo $row['post_id']?>
elem5<?php echo $row['post_id']?> = document.querySelector(".img4<?php echo $row['post_id']?>");
Code: Select all
<script>
function setBg2() {
elem = document.querySelector(".column");
elem1 = document.querySelector(".column1");
elem2 = document.querySelector(".column2");
elem4 = document.querySelector(".venster");
elem5<?php echo $row['post_id']?> = document.querySelector(".img4<?php echo $row['post_id']?>");
elem.style.background = "black";
elem1.style.background = "black";
elem2.style.background = "black";
elem4.style.background = "black";
elem5<?php echo $row['post_id']?>.style.background = "black";
elem.style.color = "gray";
elem1.style.color = "gray";
elem2.style.color = "gray";
elem4.style.color = "gray";
}
</script>
<tr>
<td bgcolor=#ffffff>
</td>
<th bgcolor="#FFFFFF">
<span style="cursor: crosshair">
<a href="#" onmouseover="setBg0()"> <t style="color: #ffffff; background-color: #ffffff">w</t></a>
<a href="#" onmouseover="setBg1()"><t style="color: #a6a6a6; background-color: #a6a6a6">g</t></a>
<a href="#" onmouseover="setBg2()"><t style="color: #000000; background-color: #000000">d</t></a>
</span>
</th>
</tr>
Code: Select all
<?php
// Include the database configuration file
include 'dbConfig.php';
// Get records from the database
$query = $db->query("SELECT *, SUBSTRING(`post_text`, 1, 150) AS post_text FROM w3_post where not privacy='hide' ORDER BY post_id DESC LIMIT 6");
}
if($query->num_rows > 0){
while($row = $query->fetch_assoc()){
include 'badwords-busy.php';
$postID = $row['post_id'];
?>
<br><br>
<?php } ?>
<div class="show_more_main" id="show_more_main<?php echo $postID; ?>">
<span id="<?php echo $postID; ?>" class="show_more" title="Load more posts">Show more</span>
<span class="loding" style="display: none;"><span class="loding_txt">Loading...</span></span>
</div>
<br><br><br><br>
<?php } ?>
</div>