أهلا محمد ، حمزة 
نعم أخي حمزة الإبداع في المسألة واسعة ، و بسبب الوقت قلت أعطي فكرة فقط و ليس تطبيق "محنّك" 
شكرا لك ، و الحمد لله أنا بخير ، لعلّك أنت أيضا بخير .
حياكم الله .
 
			
		 
	 
 يمكن ايضًا ان تستعمل خرائط html
عدلت هذا الكود من هنا:
http://www.w3schools.com/tags/tryit....ryhtml_areamap
اعمل نسخ\لصق لتشاهد النتيجة:
	كود PHP:
	
<html>
<body>
<p>Click on the sun or on one of the planets to watch it closer:</p>
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />
<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" onmouseover="alert('sun')"  />
  <area shape="circle" coords="90,58,3" alt="Mercury"  onmouseover="alert('mercury')"   />
  <area shape="circle" coords="124,58,8" alt="Venus"   onmouseover="alert('venus')"  />
</map>
</body>
</html>