marcus Posted October 24, 2006 Share Posted October 24, 2006 Ok, what I'm trying to do is if a user clicks on a certain part of the image using the ismap then it would echo off something or like set a cookie for authorization or suttin[code]<a href=/php><img src=image.png ismap border=0></a><?php$thing = $_GET['/'];if($thing == "34,192"){echo "noob";};?>[/code]neoblob.com/phpjust go there if you dunno what i mean Link to comment https://forums.phpfreaks.com/topic/24952-resolved-using-php-in-an-ismap/ Share on other sites More sharing options...
trq Posted October 24, 2006 Share Posted October 24, 2006 [code=php:0]<a href='#'><img src='image.png' ismap border=0></a><?php if (count($_GET)) { $coords = array_keys($_GET); $coords = explode(',', $coords[0]); $x = $coords[0]; $y = $coords[1]; echo "x co-ord = $x, y co-ord = $y"; }?>[/code] Link to comment https://forums.phpfreaks.com/topic/24952-resolved-using-php-in-an-ismap/#findComment-113736 Share on other sites More sharing options...
trq Posted October 24, 2006 Share Posted October 24, 2006 Elaberating a little. To have something happen when certain co-ords are triggered. eg;[code=php:0]if ($x == 34 && $y ==192) { // do whatever.}[/code] Link to comment https://forums.phpfreaks.com/topic/24952-resolved-using-php-in-an-ismap/#findComment-113741 Share on other sites More sharing options...
marcus Posted October 24, 2006 Author Share Posted October 24, 2006 works, thanks ^^ Link to comment https://forums.phpfreaks.com/topic/24952-resolved-using-php-in-an-ismap/#findComment-113753 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.