当前位置:首页 > PHP教程 > php应用 > 列表

php mysql数据保存实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-15 14:48:47 浏览: 评论:0 

这是一款老外写的mysql php接受数据过来然后进行数据保存在mysql_real_escape_string(nl2br(strip_tags($_POST[\'comment\'])));我觉得写得和我们有一点区别吧,代码如下:

database config.php代码如下:

  1. $db_host  = 'localhost'
  2. $db_user  = 'root'
  3. $db_pass  = ''
  4. $db_database = ''
  5.  
  6. $link = mysql_connect($db_host,$db_user,$db_passor die('unable to establish a db connection'); 
  7.  
  8. mysql_select_db($db_database,$link); 
  9. mysql_query("set names utf8"); 
  10.  
  11.  
  12. if(emptyempty($_post['comment'])) die("0"); 
  13. // if there isn't a comment text, exit 
  14.  
  15. $comment = mysql_real_escape_string(nl2br(strip_tags($_post['comment'])));//开源代码phpfensi.com 
  16. $user='demo'
  17. // this would be a nice place to start customizing - the default user 
  18. // you can integrate it to any site and show a different username. 
  19.  
  20. $addon=''
  21. if($_post['parent']) $addon=',parent='.(int)$_post['parent']; 
  22.  
  23. mysql_query("insert into wave_comments set usr='".$user."', comment='".$comment."', dt=now()".$addon); 
  24.  
  25. if(mysql_affected_rows($link)==1) 
  26.  echo mysql_insert_id($link); 
  27.  // if the insert was successful, echo the newly assigned id 
  28. else 
  29.  echo '0'

sql数据库文件如下:

  1. -- 
  2. -- table structure for table `wave_comments` 
  3. -- 
  4.  
  5. create table `wave_comments` ( 
  6.   `id` int(11) not null auto_increment, 
  7.   `parent` int(11) not null default '0'
  8.   `usr` varchar(16) collate utf8_unicode_ci not null default ''
  9.   `comment` text collate utf8_unicode_ci not null
  10.   `dt` datetime not null default '0000-00-00 00:00:00'
  11.   primary key  (`id`), 
  12.   key `parent` (`parent`,`id`) 
  13. ) engine=myisam  default charset=utf8 collate=utf8_unicode_ci; 
  14.  
  15. -- 
  16. -- dumping data for table `wave_comments` 
  17. -- 
  18.  
  19. insert into `wave_comments` values(1, 0, 'tutorialzine''this is a demo for a tutorialzine tutorial about creating a google wave-like history slider.<br /><br />rnto get started, just drag the slider above, and this thread will be reverted to a past state.''2009-10-24 03:58:08'); 
  20. insert into `wave_comments` values(2, 0, 'curious''is html allowed in the comments?''2009-10-24 03:59:44'); 
  21. insert into `wave_comments` values(3, 2, 'tutorialzine''nope. also the messages in this demo are deleted every hour to prevent spamming.''2009-10-24 04:00:15'); 
  22. insert into `wave_comments` values(4, 1, 'tutorialzine''in this tutorial we are using <b>php</b>, <b>mysql</b>, <b>jquery</b> and <b>css教程</b>. the slider was created with <b>jquery ui</b>. <a href="http://111cn.net/2009/10/google-wave-history-slider-jquery/" target="_blank">view the tutorial</a>.''2009-10-24 04:01:34'); 
  23. insert into `wave_comments` values(5, 2, 'curious''thanks! also i noticed that you can click, rather than drag the slider.great!''2009-10-24 04:11:48'); 

Tags: php mysql数据保存实例

分享到: