Jump to content

Can not use isset($_POST)


abrew108

Recommended Posts

I want to link this two file but not working, 
first file to make drop down option form

second file to print image

I can not print image ,,, 

can any body give advise ??

Thank you for ur help

 

 

**File option reg** :

 



$spi1s[1]="01_SAT_MAX_DUR";
$spi1s[2]="01_SAT_MAX_INT";
$spi1s[3]="01_SAT_RTN_PRD";
$spi1s[4]="01_SAT_FREQ";
$spires1 = mysql_query("SELECT SPI FROM kekeringan where SPI like '%01_SAT%'");
$spirow1=mysql_fetch_array($spires1);
$spiTitle1=$spirow1["SPI"];
foreach ($spi1s as $spiTitle1) {
        echo "<option id=\"option\" value=\"".$spiTitle1."\" ";
        if (isset($_POST['plot']) && $_POST['plot'] == $spiTitle1) { echo "selected=\"SELECTED\" "; }
                echo ">
                $spiTitle1
        </option>";
        }
echo "<br />";
echo "<br />";echo "</select></td>\n";
echo "<input id='option' type=\"submit\" name=\"getringan\" value=\"Submit\" />\n";
echo "</form>\n";




 

**File to print** :


(isset($_POST['getringan'])){
$spi1s[1]="01_SAT_MAX_DUR";
$spi1s[2]="01_SAT_MAX_INT";
$spi1s[3]="01_SAT_RTN_PRD";
$spi1s[4]="01_SAT_FREQ";
$spires1 = mysql_query("SELECT SPI FROM ringan where SPI like '%01_SAT%'");
$spirow1=mysql_fetch_array($spires1);
$spiTitle1=$spirow1["SPI"];


        $image = "<div id=\"plot_res\" style='border: none;width:810px;height:610px;margin:auto;padding:auto;'>";


        if ($_POST['plot'] == "01_SAT_MAX") {
                $image .= "<center><img src=\"../data/4_0_0.png\" /></center>";
                $image .= "</div>";
                echo $image;
        } elseif ($_POST['plot'] == "SPI_01_SAT_MAX_INT"){
                $image .= "<center><img src=\"../data/4_1_0.png\" /></center>";
                $image .= "</div>";
                echo $image;
        } elseif ($_POST['plot'] == "SPI_01_SAT_RTN_PRD"){
                $image .= "<center><img src=\"../data/4_2_0.png\" /></center>";
                $image .= "</div>";
                echo $image;
        } elseif ($_POST['plot'] == "SPI_01_SAT_FREQ"){
                $image .= "<center><img src=\"../data/4_2_0.png\" /></center>";
                $image .= "</div>";
                echo $image;


        } else {echo "fail";}


 

Link to comment
Share on other sites

Did you paste a partial code?

Should have an if here

if(isset($_POST['getringan'])){

and also wrap it with another curly brace at the end

yes i did it,

sorry not checking the paste of my code

coz i am making many trial ,,, try anything ,,, but still strugling

Edited by abrew108
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.