You are here: Re: Using POST to pass variables « PHP « IT news, forums, messages
Re: Using POST to pass variables

Posted by David Robley on 10/06/99 11:33

Todd Cary wrote:

> When I have more than one button on a page, I us what I call a reentrant
> approach. That is the page calls itself.
>
> If the page is emailer.pgp, the the FORM tag would be
>
> <form method="get" action="emailer.php">
>
> At the top is
>
> <?php
> $send = $_GET[btnSend]; // Send button pressed
> $cancel = $_GET[btnCancel];// Cancel is pressed
> $message = $_GET[message];
> if ($send) {
> header("location: send.php?message=" . $message);
> }
> if ($cancel) {
> header("location: index.php");
> }
> ?>
>
> Is there a better way to do this so I can use a POST form?
>
> Thank you...
>
> Todd
What about:

<form method="post" action="emailer.php">

and

if (isset($_POST['send']) ) {
# do some sanitising on $_POST['message'] here
header("location: http://f.q.d.n/path/to/send.php?message=" .
$_POST['message']);
}
exit();

if (isset($_POST['cancel']) ) {
header("location: http://f.q.d.n/path/to/index.php");
}

Add other sanity checks as required.


Cheers
--
David Robley

Do not put statements in the negative form.

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация