# Problem loading page

**URL:** https://forum.kirupa.com/t/problem-loading-page/331125
**Category:** flash
**Created:** [May 22, 2013, 2:56am UTC](https://forum.kirupa.com/t/problem-loading-page/331125 "2013-05-22T02:56:15Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ohya](https://avatars.discourse-cdn.com/v4/letter/o/fbc32d/32.png) [@ohya](https://forum.kirupa.com/u/ohya)
#### Post date: [May 22, 2013, 2:56am UTC](https://forum.kirupa.com/t/problem-loading-page/331125/1 "2013-05-22T02:56:15Z")

</div>

Hello,  
I have problem loading page after pressing the button.

submit.onPress = function () {  
getURL (“localhost/getVars.php”,"\_blank", “POST”);  
}

Php code:

\<?  
// Receiving the variables.  
$name = $\_POST[‘name’];  
$age = $\_POST[‘age’];  
$eye = $\_POST[‘eye’];

// Printing out the variables.  
print "Your name is ". $name . “.”;  
print “You are “. $age .” years old.”;  
print “You have “. $eye .” eyes.”;  
?\>  
It works when I place it in browser.
