Esempio n. 1
0
			</td>
			<td width="80%">
				<?php 
    if ($this->key == $field && $this->task == 'edit') {
        echo $this->id . MiwosqlHelper::renderHtml($field, 'hidden', $this->id) . ' [ ' . $type . ' ]';
    } else {
        if ($this->key == $field && $this->task == 'new') {
            if (is_numeric($this->last_key_vol)) {
                $value = $this->last_key_vol + 1;
            } else {
                $value = $this->last_key_vol . '_1';
            }
        } else {
            eval($this->fld_value);
        }
        echo MiwosqlHelper::renderHtml($field, $type, $value) . ' [ ' . $type . ' ]';
    }
    ?>
			</td>
		</tr>
		<?php 
    $k = 1 - $k;
}
?>
	</table>
	
	<input type="hidden" name="option" value="com_miwosql" />
	<input type="hidden" name="controller" value="edit" />
	<input type="hidden" name="task" value="">
	<input type="hidden" name="id" value="<?php 
echo $this->id;