dongyakui8675 2014-10-23 08:52
浏览 36
已采纳

POST未定义的索引php

I have my ppf.php file:

it has a form with some items,where I show data from my database, it works i have no problem with it.

<form name="pagar"  method="post" action="updaterecord.php">
<input type="text" name="num_paciente" size=40 maxlength=40 readonly value="<?php echo $fila['num_paciente']; ?>">// Here I show data from my data base // it works.
<input name="monto"  size=40 maxlength=40 type="text"  value="" required />
<textarea id="concepto" name="concepto" rows="5" cols="58" required></textarea>
..more input fields
 <input align="middle" type="submit" value="paga">
</form>

the problem is

ppf.php has a submit button, and my form is send to updaterecord.php. In updaterecord.php i need to receive all values of my ppf.php to update a table in my Database:

<?php
$num_paciente=$_POST['num_paciente'];
$monto=$_POST['monto'];
$concepto=$_POST['concepto'];

$updater="UPDATE op SET monto = '$monto', concepto='$concepto', status='PAGADO' where num_paciente='".$num_paciente."'";
mysql_query($updater,$con)or die (mysql_error());
?>

It doesn't work: and I see it:

Notice: Undefined index: num_paciente in C:\xampp\htdocs\...\updaterecord.php on line 16    
Notice: Undefined index: monto in C:\xampp\htdocs\...\updaterecord.php on line 17    
Notice: Undefined index: concepto in C:\xampp\htdocs\...\updaterecord.php on line 18

How I can solve this problem? Thank you

  • 写回答

2条回答 默认 最新

  • dougong2306 2014-10-23 09:03
    关注

    In addition to the answer of @Barry, your query must be corrected as this:

    $updater="UPDATE op SET monto = '".$monto."', concepto='".$concepto."', status='PAGADO' where num_paciente='".$num_paciente."'";
    

    I read again your code, please be careful to the textarea, change this:

    <input type="text" name="num_paciente" size=40 maxlength=40
    

    to

    <input type="text" name="num_paciente" size="40" maxlength="40"
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部