Dethman Posted January 3, 2008 Share Posted January 3, 2008 MMORPG coding questions How do I get a different Image Appear for each race I have. I need it to have a different pic for each race's Navigation Panel.... $conf["race"][1]["leftBG"][0]["name"]="pic/Race1Nav.jpg"; <img src="<?=$conf["race"]["leftBG"][0]["name"]?>" width="140" height="290" border="0" usemap="#Race1Nav"> can you help me out with this? can someone get it to work? Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/ Share on other sites More sharing options...
rajivgonsalves Posted January 3, 2008 Share Posted January 3, 2008 Well if your named your images properly they should appear fine... with some tweaking of your code... however more information is required on the actual code.. how is it called... what are the files.. etc.. to make some suggestion on getting it too work! Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-429081 Share on other sites More sharing options...
Dethman Posted January 3, 2008 Author Share Posted January 3, 2008 well hmm it isnt appearing Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-429084 Share on other sites More sharing options...
rajivgonsalves Posted January 3, 2008 Share Posted January 3, 2008 have you got the path right is it in the pic folder on which page are you putting the image tag... Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-429089 Share on other sites More sharing options...
Dethman Posted January 3, 2008 Author Share Posted January 3, 2008 Is there any other way to do it like if ($race==1 show this pic?) Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-429092 Share on other sites More sharing options...
rajivgonsalves Posted January 3, 2008 Share Posted January 3, 2008 if you got your naming conventions write and $race is your variable you could do the following <img src="/pic/Race<?=$race?>Nav.jpg" width="140" height="290" border="0" usemap="#Race<?=$race?>Nav"> Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-429096 Share on other sites More sharing options...
Dethman Posted January 4, 2008 Author Share Posted January 4, 2008 Got the dam thing to work thanx for your help Guys :P Link to comment https://forums.phpfreaks.com/topic/84252-image-array-for-different-races/#findComment-430333 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.