How to get the total subscibers?
This number should be in the Thank you message, the email, the subject etc
In the past I used Custom code with a PHP code
And used this {total} in various messages,
I can't get it work in V6
This number should be in the Thank you message, the email, the subject etc
In the past I used Custom code with a PHP code
And used this {total} in various messages,
I can't get it work in V6
<? $db =& JFactory::getDBO(); $pst = "SELECT COUNT(*) AS %s FROM %s WHERE %s = %s"; $query = sprintf( $pst, $db->quoteName('items'), $db->quoteName('nestv_chronoengine_chronoforms_data_basic'), $db->quoteName('Datum'), $db->Quote(JRequest::getString('Datum'))); $db->setQuery($query); $result = $db->loadObject(); $total = $result->items+1; $form->data['total'] = $total; ?>