Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

पार्स त्रुटि:php . में पार्स त्रुटि

यह कहां से है else में आ रहा है? एक }जोड़ें :

} else if(($shares = mysql_query($sharesQuery)) == false)

आपका अंतिम कोड होगा:

<?

    // require common code
    require_once("includes/common.php");

    //check for errors
    $error = false;
    if (isset($_POST["submit"])) {

        if (empty($_POST["symbol"])) {
            $error   = true;
            $message = "Enter a name";
        }

        else if (empty($_POST["shares"])) {
            $error   = true;
            $message = "Enter the shares";
        }

        // check if user has the stocks and the shares
        $id     = $_SESSION["id"];
        $symbol = $_POST["symbol"];

        $sharesQuery = "SELECT shares FROM portfolio WHERE id = $id AND symbol = '$symbol' ";
    } else if (($shares = mysql_query($sharesQuery)) == false) {
        $error   = true;
        $message = "Don't have the stock";
    }

    // else, if everything checks out, delete it and increment the cash

    else {
        $deleteQuery = "DELETE from portfolio WHERE id = $id AND symbol = '$symbol'";
        mysql_query($deleteQuery);

        $incrementQuery = "UPDATE users SET cash = cash + ($shares * lookup($symbol)->price) WHERE id = $id ";
        mysql_query($incrementQuery);

        //set the variables into session  and then redicrect to sell2
        $_SESSION["symbol"] = $_POST["symbol"];
        $_SESSION["shares"] = $_POST["shares"];
        redirect("sell2.php");

    }

?>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mysql के लिए कई डॉकटर कंटेनर या कई डेटाबेस के साथ एक उदाहरण

  2. लेख की जानकारी को उसके वोट मूल्यों के आधार पर अपडेट करने के लिए क्रॉन जॉब सेट करें

  3. इस कोड में क्या गलत है जो PHP में डेटाबेस से डेटा लाने के लिए mysql एक्सटेंशन का उपयोग करता है?

  4. MySQL के लिए रोलिंग अपग्रेड कैसे करें

  5. रेल में किसी तालिका में कौन सी अनुक्रमणिका जोड़ना है?