wmguk Posted May 23, 2008 Share Posted May 23, 2008 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 More sharing options...
jonsjava Posted May 23, 2008 Share Posted May 23, 2008 sounds like a javascript issue, not php. It's populating the image, but your js isn't displaying it properly. Link to comment https://forums.phpfreaks.com/topic/106981-onmouseover-zoom-script-problem/#findComment-548379 Share on other sites More sharing options...
calabiyau Posted May 25, 2008 Share Posted May 25, 2008 Show imagezoom.js Link to comment https://forums.phpfreaks.com/topic/106981-onmouseover-zoom-script-problem/#findComment-549786 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.