Please help me. I'm working on a website using the above mentioned languages, that displays a table with information from a mysql database (testing in localhost). In addition, every row in the table is generated by a "do-while" loop (naturally) as well as each row has a submit button that displays all the information for that row (and that row only) in a popup box. The problem I'm facing is that when the button for any single row is the clicked, the popup shows all the information for all the tables. The syntax I have is as follows:
Submit Button in the table:
<table id="results" align="center" class="tbl" width="100%">
do
{
...
print "<td>";
$sub = $row['pid']; //the id from each row in the database
print "<form method=\"get\"><span class=\"button\"> ";
$btn = '<input type="submit" id="submit" onclick=""
value="'.$sub.'" />';
echo $btn;
print "</span></form></td>";
The Popup showing full information for the row the button is on:
do
{
print "<span class=\"popupContact\">";
print "<a class=\"popupContactClose\">x</a>";
print "Status: ";
echo $row['status'];
print "<p class=\"contactArea\">";
print "<b>Team Leader: ";
echo $row['team_lead']; </b></p>
print "<span class=\"backgroundPopup\"></span>";
}while($button == $row['pid']);
End of Table
}while($row = mysql_fetch_array($result));
</table>
Now onto the CSS (general.css):
.popupContact{
position:fixed;
z-index:2;
font-size:13px;
}
.popupContactClose{
display:block;
}
.backgroundPopup{
background:#000000;
z-index:1;
}
.button{
text-align:center;
margin:5px;
color: #d2d2d2;
}
And now the slightly complex Javascript (popup.js):
var popupStatus = 0;
var cnt = 16;
function loadPopup(){
cnt = 1;
//loads popup only if it is disabled
centerPopup();
while(popupStatus==0){
$(".backgroundPopup").css({
"opacity": "0.5"
});
$(".backgroundPopup").fadeIn("slow");
$(".popupContact").fadeIn("slow");
popupStatus = 1;
}
}
function disablePopup(){
//disables popup only if it is enabled
while(popupStatus==1){
$(".backgroundPopup").fadeOut("slow");
$(".popupContact").fadeOut("slow");
popupStatus = 0;
cnt=16;
}
}
//centering popup
function centerPopup(){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $(".popupContact").height();
var popupWidth = $(".popupContact").width();
//centering
$(".popupContact").css({
"position": "absolute",
"top": windowHeight/2-popupHeight/2,
"left": windowWidth/2-popupWidth/2
});
//only need force for IE6
$(".backgroundPopup").css({
"height": windowHeight
});
}
//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
//LOADING POPUP
//Click the button event!
$(".button").click(function(){
//centering with css
centerPopup();
//load popup
loadPopup();
});
//CLOSING POPUP
//Click the x event!
$(".popupContactClose").click(function(){
disablePopup();
});
//Click out event!
$(".backgroundPopup").click(function(){
disablePopup();
});
//Press Escape event!
$(document).keypress(function(e){
if(e.keyCode==27 && popupStatus==1){
disablePopup();
}
});
});
I've been trying to get the popup to show only the relevant info for weeks now and I'm stumped. If anyone could assist me with this I would be most grateful. Also, if something about this question is unclear, please feel free to let me know. Thank you :)