开发者

facebook profile pic not working in div tag in firefox

开发者 https://www.devze.com 2023-02-08 23:37 出处:网络
<div> <img src=\'http://graph.facebook.com/<?p开发者_开发问答hp $user->id ?>/picture\'/>;
  <div>
      <img src='http://graph.facebook.com/<?p开发者_开发问答hp $user->id ?>/picture'/>;
</div>

this is the code that i m using to get a facebook profile pic in div ,this div tag is running in java script ,when i run this code in chrome it works well,but in firefox it get blink and then image comes,pls help anybody thanks in advance


You need to show us more code, also you need to echo the user id:

<img src='http://graph.facebook.com/<?php echo $user->id ?>/picture' alt='' />
0

精彩评论

暂无评论...
验证码 换一张
取 消