Jump to content

onmouseover / zoom script problem


wmguk

Recommended Posts

hey guys,

 

I have this code

 

<?php
$login = $_GET['login'];
$ceremony = $_GET['ceremony'];
$pricing_table='pricing';
$pricing = $_GET['pricing'];
$user = $_GET['user'];
$name = $_GET['name'];
$Pic_Name1 = $_GET['image'];

// Make Connection
include '../scripts/connection.php';
if (!$con)
{
die('Could not connect: ' . mysql_error() );
}
mysql_select_db($db, $con);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link href="../styles.css" rel="stylesheet" type="text/css" />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script type="text/javascript" language="javascript" src="imagezoom.js"></script>
</head>
<body>
  <?php
  //renumber
  $my_image = array_values(getimagesize($Pic_Name1));
  //use list on new array
  list($width, $height, $type, $attr) = $my_image;
?>

<div onmouseover="zoom_on(event,<?php echo $width ; ?>,<?php echo $height ; ?>,'<?php echo $Pic_Name1 ; ?>');" onmousemove="zoom_move(event);" onmouseout="zoom_off();"><img src="<?php echo $Pic_Name1 ; ?>" border="0"/></div>

</body>
</html>
<?php
//Close the connection
mysql_close($con);
?>

 

for some reason when i put my mouse over the image, it doesnt zoom like it should, it just flashed the image over and over and then on mouse off the image disappears completely.

 

any ideas what is going on?

Link to comment
https://forums.phpfreaks.com/topic/106981-onmouseover-zoom-script-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.