Quantcast
Channel: iT邦幫忙
Viewing all articles
Browse latest Browse all 15645

PHP內一個FORM放兩個按鈕的問題?

$
0
0
因為我想在一個表單內分別使用兩個按鈕進行更新與新增資料的部分,但不知道怎麼用JAVA進行傳值,請厲害的大大們協助,感激不已,以下是節錄的程式碼:
if(isset($_POST["action"])&&($_POST["action"]=="update"){ )  $sql_query="UPDATE `access` SET";
elseif(isset($_POST["action"])&&($_POST["action"]=="insert"){
{
  $sql_query="INSERT INTO `access`(`cGoldhealth`,`cAccessrule`  ,`cTimes`
  ,`cAccessDate`,`cPartner`,`cVisitarea`,`cName`,`cIDnumber`,`cTelephone`
  ,`cBorn`,`cResidence1`,`cResidence2`,`cAlone`,`cHealthact`,`cFor`,`cTube`
  ,`ccare`,`cLifefuntion`,`cHistory`,`cHistory1`,`cKidney`,`cKidney1`, `cMedicine`
  ,`cMedicine1`,`cMedical`,`cMedical1`,`cFirst`,`cFeedback`,`cFeedback1`,`cRecomment`)
  VALUES(";<form action=""  method="post" name="formFix" id="formFix"><tr><td colspan="2" align="center"><input name="cID" type="hidden" value="<?php echo $row_result["cID"];?>"><input name="action" type="hidden" value="update" ><input type="submit" name="botton" id="botton" value="更新資料"  ><input name="action" type="hidden" value="insert"><input type="submit" name="botton" id="botton" value="新增資料" > <input type="reset" name="botton2" id="botton2" value="重新填寫"></form></td></tr>

在這個地方要怎麼利用java語法,讓按更新的按鈕就跳到update更新原有資料的條件去,按新增的按鈕就直接跳到insert的條件將表單資料直接往上增加,感謝大大的幫忙。

Viewing all articles
Browse latest Browse all 15645

Trending Articles