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 want to redirect users to a external payment gate with some parameters using zend.is there any standard way of doing it ?

really appreciate any advice and suggestions.

thanks.

share|improve this question

3 Answers

You could use the built in PHP function of http_build_query to build the parameters, then feed that to the gotoUrlAndExit() function of Zend Framework.

$url = "https://external.gateway.com/";
$data = array('foo'=>'bar',
              'baz'=>'boom',
              'cow'=>'milk',
              'php'=>'hypertext processor');

$query = http_build_query($data);

$this->_helper->redirector->gotoUrlAndExit($url . '?' . $query);
share|improve this answer
thanks guys awesome..special thanks to nvoyageur for example..u r a real time saver.. – sha Mar 31 '11 at 10:04
@sha, if you like my answer, please "accept" it and give it an upvote. This will build your reputation score. – Shane Stillwell Mar 31 '11 at 12:12

In ZF there is Redirector action helper. It has methods called gotoUrl() and gotoUrlAndExit() that can be used to go to external urls. Maybe this helper will be suited for your needs.

share|improve this answer
$this->_redirect($url);

Just put it in your action

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.