prestashop - 添加新用户或客户的代码

时间:2012-10-03 13:50:24

标签: php mysql prestashop

我正在尝试分析将Presta与其他系统集成但未通过的AuthController.php文件或模块..

您是否有任何解决方案或代码片段可以轻松完成此操作?

1 个答案:

答案 0 :(得分:3)

好的,我有一个适合我的工作:

include '../config/config.inc.php';  // path ti the config file
   $cookie = new Cookie('ps', '', 3600);

Db::getInstance()->Execute("INSERT INTO `ps_customer` VALUES (NULL,$gengre,1,'$tempname','$tempsurname','$email','".md5(_COOKIE_KEY_.$passNew)."',NOW(),NULL,0,NULL,NULL,0,'ba27e0ac14389d8feb89c3c9e7594464',NULL,1,0,0,NOW(),NOW())");

也许它可以帮助某人