borobdin
Seiki Nova, you can use the coordinates you get from that to make a map. However, most of the HTML in your code is disabled on Gaia, so even if it fits the sig character limit, it won't work. It's the reason Jakobo wrote the code and I wrote this thread.
OK...so if I use the code that Jakobo made, can I just use the coordinates that I had from the information that I got with ImageReady?
The code now looks like this...Tell me if I'm wrong please so I can fix anything.
<?PHP
/* Gaia Image Map Go-er
Rudolph J Heuser
*/
require_once("imagemap.class.php")
// new imageMap
$myImageMap = new imageMap()
// define regions
$area = new Rect(6,145,185,161, "http://www.gaiaonline.com/forum/guilds/index.php?page_mode=4&guild_id=1979")
$myImageMap->addToMap($area)
$area = new Rect(6,162,186,176,"http://www.gaiaonline.com/forum/viewtopic.php?t=3449326&highlight=")
$myImageMap->addToMap($area)
$area = new Rect(7,177,184,190,"http://www.gaiaonline.com/forum/viewtopic.php?t=4666591&highlight=")
$myImageMap->addToMap($area)
$area = new Rect(192,126,371,250,"http://www.gaiaonline.com/gambino/bank.php?mode=trade&uid=537536")
$myImageMap->addToMap($area)
$myImageMap->setDefaultURL("http://www.gaiaonline.com/profile/profile.php?mode=viewprofile&u=537536")
// capture X and Y from query string
$x_and_y = $_SERVER["QUERY_STRING"]
$x_and_y = explode(",",$x_and_y)
$inX = $x_and_y[0]
$inY = $x_and_y[1]
unset($x_and_y)