kee1108 Posted August 31, 2006 Share Posted August 31, 2006 if i have stored some team logos in a local folder, how can i get it to display the right team logo when i call for a particular team.what should i define?Thanks. Link to comment https://forums.phpfreaks.com/topic/19263-how-to-get-logos-from-a-local-folder/ Share on other sites More sharing options...
redarrow Posted August 31, 2006 Share Posted August 31, 2006 Are you using a database with the team and team name to the user id to the logo.?that quite a tricky one to ansaw as we dont have enough information sorry. Link to comment https://forums.phpfreaks.com/topic/19263-how-to-get-logos-from-a-local-folder/#findComment-83479 Share on other sites More sharing options...
kee1108 Posted August 31, 2006 Author Share Posted August 31, 2006 yes i have table to store team id and team names.so i need a table for the images as well?? Link to comment https://forums.phpfreaks.com/topic/19263-how-to-get-logos-from-a-local-folder/#findComment-83483 Share on other sites More sharing options...
redarrow Posted August 31, 2006 Share Posted August 31, 2006 No you dont need the logo name in the database if you do it the way i am going to show you.the ="you and =="me resides as the name of the team resulting to the correct pic name.example only not tested ok.good luck.[code]<?phpselect database.$query="select * from team_member where id='$id'";$result=mysql_query($query);while($record=mysql_fetch_assoc($result)){if($record['team_name']=="me"){echo"<img src='folder/name_img.jpg'><img>";}elseif($record['team_name']=="you"){echo"<img src='folder/diffrent_img.jpg'><img>";}else{echo"<img src='folder/no_pic.jpg'><img>";} }?>[/code] Link to comment https://forums.phpfreaks.com/topic/19263-how-to-get-logos-from-a-local-folder/#findComment-83491 Share on other sites More sharing options...
kee1108 Posted August 31, 2006 Author Share Posted August 31, 2006 thank you.so if i have a long list of team, it is going to be a long code :)but guess this is the safest and easiest way to do it, hahathank you. Link to comment https://forums.phpfreaks.com/topic/19263-how-to-get-logos-from-a-local-folder/#findComment-83496 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.