Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo 'http://domainame.com/'.$_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'];?>&amp;layout=button_count&amp;show_faces=false&amp;width=120&amp;action=recommend&amp;font=verdana&amp;colorscheme=light&amp;height=21"
 scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:120px; height:21px;" allowTransparency="true"></iframe>

But if i'm on http://domainame.com/?bla it prints http://domainame.com//index.php?bla

if i could just send this.href but i don't know how to insert js in-line here,

help?

With your help we got working:

<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo str_replace("index.php","",'http://'.$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']); ?>&amp;layout=button_count&amp;show_faces=true&amp;width=150&amp;action=recommend&amp;font&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:120px; height:21px;" allowTransparency="true"></iframe>

can get better?

share|improve this question
can i do it inline? or i'm going to have to do it on $(document).ready ? – Toni Michel Caubet Apr 3 '11 at 20:37
It can be done inline, just posted an answer. – Unsigned Apr 3 '11 at 20:44

3 Answers

up vote 1 down vote accepted

Try using the following as a value for href:

<?php echo rawurlencode('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); ?>
share|improve this answer
this one is working for now, gracias Marcel ! – Toni Michel Caubet Apr 3 '11 at 21:26

Try this: <?php echo rawurlencode('http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); ?>

(BTW, you should never use $_SERVER['PHP_SELF'] for anything of this sort, due to injection vulnerabilities. Read this for details.)

share|improve this answer
should this be working for every single URL i may use? even with modrewrite? – Toni Michel Caubet Apr 3 '11 at 21:07
i thought it was working, but it allways detects domainame.com :? – Toni Michel Caubet Apr 3 '11 at 21:21
thaks for your time :) it's same solution @Marcel suggested ;) – Toni Michel Caubet Apr 3 '11 at 22:12

I image that the page is named index.php and your server sets index.php as the default page, which would mean http://domainame.com//index.php?bla is interchangeable as a page reference to http://domainame.com/?bla.

share|improve this answer
yes but that is not the answer to how to send this.href to the facebook's iframe? thanks though! – Toni Michel Caubet Apr 3 '11 at 20:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.