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? Quote 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! Quote 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 Quote 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... Quote 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?) Quote 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"> Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.