Jump to content

how to add option choice


punith

Recommended Posts

hi

i'm trying to give option choice to my coding but i'm unable to do this in php

each option should redirect to 2 different link

post-170320-0-73424400-1394174631_thumb.jpg

1st choice is result it must redirect to http://results.vtu.ac.in/vitavi.php

2nd choice is revaluation result it must redirect is http://results.vtu.ac.in/vitavireval.php

either one choice should be selected

can any one code to this and where should i place in below code

<html><head><title>Online PHP Script Execution</title></head><body><?phpecho '<form name="new" action="vitavi.php" method="POST"> <p>Enter the University Seat No: <input type="TEXT" name="rid" size="20" maxlength="50"><br><br><br><br> <input type="SUBMIT" name="submit" value="SUBMIT" align="center"><br></p><form>';   if(isset($_POST['submit']) && isset($_POST['rid']) && !empty($_POST['rid'])){    $location = 'http://results.vtu.ac.in/vitavi.php';    $userAgent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)';    $ch = curl_init();    curl_setopt($ch, CURLOPT_HEADER, 0);    curl_setopt($ch, CURLOPT_VERBOSE, 0);    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);    curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);    curl_setopt($ch, CURLOPT_POST, 1);    curl_setopt($ch, CURLOPT_URL, $location );    $post_array = array(        "rid" => $_POST['rid'],        "submit" => "SUBMIT"    );    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_array);     $response = curl_exec($ch);//change this to whatever...$extract = array("start" =>'<TD width="513">', "end"=>'<b>REGISTRAR(EVALUATION)</b>');$start = stripos($response, $extract['start']);$end = stripos($response, $extract['end']);$response = substr($response, $start, $end);echo $response."<br/>";    $start = '<TD width="513">';    $end = '<br>';    $response = strstr($response, $start);    $end = stripos($response, $end);    $response = substr($response, strlen($start), $end - strlen($start));    echo $response."<br/>";}  ?></body></html>
Link to comment
Share on other sites

Where is your checkbox code? Just put checkbox and get the value in PHP side and check the value and set the url depending upon the check box data

Link to comment
Share on other sites

@birbal

 

private $FLAG_REGULAR_RESULT='http://results.vtu.ac.in/vitavi.php';
private $FLAG_REVAL_RESULT='http://results.vtu.ac.in/vitavireval.php';
function __construct($resultFlag) {
$this->resultFlag=$resultFlag;
$this->errorValue=-1;
$this->proxy="";
if($resultFlag==0)
$this->url=$this->FLAG_REGULAR_RESULT;
else
$this->url=$this->FLAG_REVAL_RESULT;
}
is it correct code i'm very confuse of coding this part can u help me out by giving complete code
Link to comment
Share on other sites

Why are you using CURL? If you're redirecting then you can do that with Javascript without even submitting the page, or in PHP you just check which radio button they selected and send a location header to redirect them.

is it correct code i'm very confuse of coding this part can u help me out by giving complete code

We are not here to give you "complete code", that is your job. We are here to help people learn, not do your work for you.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...