Jump to content

abarba

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by abarba

  1. Hi Andreik, This is example ofcombination of AutoIt script and PHP script. I found an error in one PHP script so the complete example does not work. You cannot CREATE NEW user if you try downloaded zipped example? I solved an error (wrong usage of implode() PHP function), so complete example work fine. You can upload MysqliDb.php script and try complete example. Regards, Ante
  2. I have tested scripz and found an error: After login with admin/admin I tried to add new user (member). I entered all required fields and when I press Create, received error that user was not added. I examined code of : MysqliDb.php. I found error on line: 928 $this->_query .= ' (`' . implode($tableData, '`, `') . '`)'; Line 928 should be: $this->_query .= ' (`' . implode('`, `', array_keys($tableData)) . '`)'; Regards Ante MysqliDb.php
×
×
  • Create New...