You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 regels
399 B

  1. <?php
  2. $sql = "insert into base_customer(CHAN_QUALITY,CHAN_TYPE,ORG_ID,CHAN_NAME,AREA_ID,LINKMAN,RESMAN,SELA_TYPE,STATUS) values()";
  3. $result = $pdo ->exec($sql);
  4. if($result){
  5. //插入成功
  6. $code = 0;
  7. $info = 'success';
  8. $massge = '成功';
  9. }else{
  10. //插入失败
  11. $code = -1;
  12. $info = 'fail';
  13. $massge = '失败';
  14. }
  15. ?>