Good day all i am learning CGI using perl and i developed simple script that redirect a user based on form selection to a given website. the code follows below.
if($query->param('op') eq "ds")
{
print $query->redirect($query->param('website'));
}else
{
print"
<html><head><title>Web redirection</title></head>
<body>
<form action=\"redirect.pl\" method=\"post\" >
<fieldset>
<legend>Kindly select a website to visit</legend>
<strong>Select a website form the list:</strong>
<select name=\"website\">
<option value=\"www.sedocaonline.com\">Sedocaonline.com</option>
<option value=\"http://www.yahoo.co.uk\">Yahoo.co.uk</option>
<option value=\"http://www.play.com\">play.com</option>
</select>
<input type=\"hidden\" name=\"op\" value=\"ds\" >
<input type=\"submit\" name=\"submit\" value=\"Browse the web\">
</form>
</body>
</html>";
}
The issue here is the code does not redirect the user to the selected website it gives this respond code on the browser.
Status: 302 Found Location: www.sedocaonline.com
Please i kindly need your assistance and comments thanks in advance.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|