Google +1 data-href php

How am I able to add php into the data-href? When I add the following code the google plus no longer appears.
data-href=“<?php bloginfo(‘siteurl’); ?>?p_action=user_profile&post_author=<?php echo $uid; ?>”

Well, the page has this

	<!-- Google +1 -->
	<div class="googleplus">
		<!-- Place this tag where you want the widget to render.-->
		<div class="g-follow" data-annotation="vertical-bubble" data-height="24" data-href="http://bizcrave.com?p_action=user_profile&post_author=2" data-rel="author"></div>

		<!-- Place this tag after the last widget tag. -->
		<script type="text/javascript">
		  (function() {
			var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
			po.src = 'https://apis.google.com/js/platform.js';
			var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
		  })();
		</script>
	</div>

If you run platform.js through an online beautifier you should do OK seeing the problem
http://jsbeautifier.org/

HINT
The error console gives this error and message

Timestamp: 7/3/2014 4:57:15 PM
Error: Load denied by X-Frame-Options: https://apis.google.com/_/widget/render/follow?usegapi=1&rel=author&height=24&annotation=vertical-bubble&origin=http%3A%2F%2Fbizcrave.com&url=http%3A%2F%2Fbizcrave.com%2F%3Fp_action%3Duser_profile%26post_author%3D2&gsrc=3p&ic=1&jsh=m%3B%2F_%2Fscs%2Fapps-static%2F_%2Fjs%2Fk%3Doz.gapi.en.s2bOdO4XoIM.O%2Fm%3D__features__%2Fam%3DAQ%2Frt%3Dj%2Fd%3D1%2Ft%3Dzcms%2Frs%3DAItRSTMF348GR47HtwPAwHP55zn9SGiI4Q#_methods=onPlusOne%2C_ready%2C_close%2C_open%2C_resizeMe%2C_renderstart%2Concircled%2Cdrefresh%2Cerefresh%2Conload&id=I0_1404421035301&parent=http%3A%2F%2Fbizcrave.com&pfname=&rpctoken=42457749 does not permit cross-origin framing.

Security Error: Content at https://apis.google.com/_/widget/render/follow?usegapi=1&rel=author&height=24&annotation=vertical-bubble&origin=http%3A%2F%2Fbizcrave.com
&url=http%3A%2F%2Fbizcrave.com%2F%3Fp_action%3Duser_profile%26post_author%3D2&gsrc=3p&ic=1
&jsh=m%3B%2F_%2Fscs%2Fapps-static%2F_%2Fjs%2Fk%3Doz.gapi.en.s2bOdO4XoIM.O%2Fm%3D__features__%2Fam%3DAQ%2Frt%3Dj%2Fd%3D1%2Ft%3Dzcms
%2Frs%3DAItRSTMF348GR47HtwPAwHP55zn9SGiI4Q#_methods=onPlusOne%2C_ready%2C_close%2C_open%2C_resizeMe%2C_renderstart%2Concircled
%2Cdrefresh%2Cerefresh%2Conload&id=I0_1404421035301&parent=http%3A%2F%2Fbizcrave.com&pfname=&rpctoken=42457749 may not load data from
http://bizcrave.com/?p_action=user_profile&post_author=2#.

Thanks for the quick reply! The guys at Google provided me the fix:
https://plus.google.com/communities/113527920160449995981

I had to replace class=“g-follow” with class=“g-plusone” and it works!