我正在使用PHP和MySQL,并希望在用户在文本字段中输入新值然后按Enter键时更新我的数据库。
有没有人知道关于此的任何教程/文章?
答案 0 :(得分:2)
您可以在www.w3schools.com找到精彩的教程和说明
这些是关于如何在PHP中与MySQL数据库交互的教程:
http://www.w3schools.com/php/php_mysql_update.asp
这些是关于如何在PHP中与活动网页交互的教程:
http://www.w3schools.com/php/php_post.asp
如果你把两者结合起来,你可以实现你想要的东西=)
答案 1 :(得分:0)
对于w3schools,你将获得所有教程并检测输入密钥新闻代码在这里:
***************************************************************************
*Pressing the "ENTER Key" or the "RETURN Key" usually generates
*two characters: i.e., the "carriage return" character followed by
*the "line feed" character. Regular expressions will be used to
*check this character combination to identify whether the "ENTER
*Key" or the RETURN Key" is pressed or not.
****************************************************************************/
if(this.Text.match(/\r\n/))
{
Alert("Enter is not allowed!\nPlease use the command button.");
this.Text = this.Text.replace( /\r\n/gi,"");
// good place to fire off a CommandButton
}