joecooper Posted September 8, 2008 Share Posted September 8, 2008 i have some mouse over links (HTML) as the headder. it works on the main page, but not on the other pages, im including the header in on the other pages, just the pictures wont change. this is the test site i have: www.joeyjoe.co.uk/oag index.php is: <?php session_start(); include("header.php"); if ($_GET['module'] == "game"){ $id = $_GET['id']; include("game.php"); }else{ include("main.php"); } ?> if you click on one of the games, the index.php just includes header.php like if your on the main site, but the mouse over wont work. i know this isnt 100% php related, but i hope someone can help? Link to comment https://forums.phpfreaks.com/topic/123246-image-change-on-mouse-over-only-on-main-page/ Share on other sites More sharing options...
JasonLewis Posted September 8, 2008 Share Posted September 8, 2008 Looking at your source, you have some JavaScript included that has the definitions of some of the JavaScript variables. On the other page these variables are not defined so the image will not change. Link to comment https://forums.phpfreaks.com/topic/123246-image-change-on-mouse-over-only-on-main-page/#findComment-636471 Share on other sites More sharing options...
joecooper Posted September 8, 2008 Author Share Posted September 8, 2008 ah i see, not sure on how to correct tho Link to comment https://forums.phpfreaks.com/topic/123246-image-change-on-mouse-over-only-on-main-page/#findComment-636488 Share on other sites More sharing options...
JasonLewis Posted September 8, 2008 Share Posted September 8, 2008 Copy the JavaScript onto both pages. Link to comment https://forums.phpfreaks.com/topic/123246-image-change-on-mouse-over-only-on-main-page/#findComment-636489 Share on other sites More sharing options...
joecooper Posted September 8, 2008 Author Share Posted September 8, 2008 ah, i see what you mean, yeah the java script is within main.php, not header.php as it should be. the page started as 1 and then i split it up. but that got put with main.php thanks! Link to comment https://forums.phpfreaks.com/topic/123246-image-change-on-mouse-over-only-on-main-page/#findComment-636491 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.