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.

I have an html form and I need to populate one of the input fields with the url of the page the form is on. To get the url I have:

<?php $pageURL="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];?>

To populate the input field I have:

<script type="text/javascript">
// <![CDATA[   
$(document).ready(function(){
    var getLabel = $(".monkForm label:contains('Page URL')");
    var getFor = getLabel.attr('for');
    var splitFor = getFor.split('_');
    var inputID = $("#" + getFor );
    var wrapID = $("#w" + splitFor[1] );
    wrapID.hide();
    inputID.val('<?=$pageURL;?>');
});
// ]]> 
</script> 

The input field label on the form is "Page URL". The problem is that the page URL is not being added to the input field.

share|improve this question
2  
don't use the php function, simply use window.location.href to grab the url. – Ohgodwhy Jun 25 '12 at 20:20
<?php echo $pageURL;?> – Dagon Jun 25 '12 at 20:21

2 Answers

up vote 1 down vote accepted

You can't use PHP as it is server side. Get the URL using Javascript instead:

inputID.val(window.location.href);
share|improve this answer

you rather than use:

inputID.val(window.location.href);

don't use php statment.

share|improve this answer

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.