hi
I have a website where one can make a Query to a MySQL database - the query gives a popup-window
it works just fine fore the first query
but the second query gives a popup-window hidden beneath all other windows you have open
how do I make the popup-window to be “allways on top”
here is my popup-coding:
<?php
header('Content-type: text/html; charset=utf-8'); /* HURRA DET VIRKER ! denne linie indsat allerførst :-) */
$connection=mysql_connect("192.nnn.n.nnn","xxxxx","xxxxxxxxxxx");
if (!$connection) {echo "Ingen forbindelse til min MySQL server!"; exit;}
$db=mysql_select_db("nogn",$connection);
mysql_set_charset('utf8'); /* HURRA - og denne linie efter "select connection" :-) */
if (!$db) { echo "Ingen forbindelse til min database"; exit;}
if ($_GET['Ident'])
{
$id = $_GET['Ident'];
$hent = mysql_query("SELECT Noter, Fornavn, Efternavn, Skiftedato FROM Valloe WHERE Ident='$id'");
$vis = mysql_fetch_array($hent);
$hFornavn = $vis['Fornavn'];
$hSkiftedato=$vis['Skiftedato'];
$hEfternavn = $vis['Efternavn'];
$hNoter = $vis['Noter'];
echo "<b>mine notater fra skiftet efter $hFornavn $hEfternavn d. $hSkiftedato:</b><br>";
echo $hNoter;
}
else { echo "Noter ikke fundet eller ingen Noter"; }
?>
Erik
Denmark