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 would like to create simple serial key checker but it needs to be checked on other domain

At www.my_site_1.com

Form code

<form action="install.php" method="post">
Serial : <input type="text" name="serial" id="serial">
<input type="submit" value="Install">
</form>

I think i need to use parsing to get the results from check.php so any informations how to do it. ~ thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

You should be able to set the POST/GET URL in the action property and pass the serial directly to check.php. In your case, you want to send a GET variable I assume.

install.php shold look like:

<form action="http://my_site_2.com/check.php" method="GET">
Serial : <input type="text" name="serial" id="serial">
<input type="submit" value="Install">
</form>
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.