查询chronoforms joomla不起作用

时间:2016-09-21 22:27:49

标签: joomla chronoforms

我有一个名为" table"的表。包含所有客户端文件。当我点击"编辑" 按钮时:我想比较字段" EtatDemande"由#34; EtatDemande"在数据库中注册我改变了($ _ POST [' EtatDemande'])如果是,那么字段" StateChanged"收到" 1"

我尝试以下查询,但如果我放在" DBSAVE"在修改注册后,2个值总是相同的。

如果我放在" EtatDemande"在数据库中注册的字段始终为空

 <?php 
  /****this query just for display the old field(registration data base *****/  
    $db = JFactory::getDbo();
    $db1 = JFactory::getDbo();
    $query = $db->getQuery(true);
    $query1 = $db1->getQuery(true);

    $query1->select($db1->quoteName(array('EtatDemande')));
    $query1->from($db1->quoteName('ml0ak_chronoengine_chronoforms_datatable_formulaire'));
    $query1->where( $db1->quoteName('NuméroK10') . ' = ' . $db1->quote($_POST['NuméroK10']));

    $db1->setQuery($query1);
    $results = $db1->loadObjectList();

    foreach ( $results as $us) {
        $EtatDemande=$us->EtatDemande;
    }

    echo "   ****   Etat Demande ancien ".$EtatDemande;
    $result1 = $db1->execute();

    /*********************************************************/

       $fields = array(
        $db->quoteName('EtatChanged') . ' = ' . $db->quote(1),
    );     
    $conditions = array( 
     $db->quoteName('EtatDemande') . '= ' . $db->quote($_POST['EtatDemande']),
     $db->quoteName('NuméroK10') . ' = ' . $db->quote($_POST['NuméroK10'])
    );

    echo "EtatDemande   :".$_POST['EtatDemande'];

    $query->update($db->quoteName('ml0ak_chronoengine_chronoforms_datatable_formulaire'));
    $query->set($fields);
    $query->where($conditions);

    $db->setQuery($query);
    $result = $db->execute();
    ?>

1 个答案:

答案 0 :(得分:0)

请记住,Chronoforms会从表单中保存字段,而无需您执行任何操作。它可能会覆盖您的更改。 您可以尝试更改$ form-&gt;数据数组中的值,而不是在代码中进行更新。