duanlumei5941 2013-12-17 16:11
浏览 57
已采纳

输入类型文本字段给出固定错误2147483647

I have input type field as mobile but every time it feeds in this particular value in my database ie 2147483647 irrespective whatever values we fill

td><span class="style5">Mobile</span></td>
  <td><input type="number" name="mob" class="text-input" maxlength="10" /></td>

connecting code $Mobile= mysql_real_escape_string( $_POST['mob']);

"INSERT INTO old VALUES('','$ID','$Car','$Name','$Name','$Gender','$DOB','$Age','$Mobile','$A   ddress','$City','$EmailId')"
  • 写回答

1条回答 默认 最新

  • duandao8607 2013-12-17 16:14
    关注

    Your column in a signed INT which holds integers up to 2147483647. Your value is clearly larger than that. You will need to use BIGINT or VARCHAR for that data depending on what it represents (phone numbers should be stored as VARCHAR/CHAR since you are not going to be doing math with them).

    See Integer Types (Exact Value)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类