Пример #1
0
"><?php 
                    echo $data_val['cnt']['val'];
                    ?>
</span>)</td>
          <?php 
                }
                ?>
		</tr>
		<?php 
            }
            ?>
		<?php 
        }
        ?>
        <tr class="row<?php 
        echo gen_row(1);
        ?>
">
          <td colspan="4" class="data"><pre><?php 
        echo $report['str_result'];
        ?>
<BR><BR></pre></td>
        </tr>
      </table>
	<?php 
    }
}
?>
	</td>
  </tr>
  <script language="javascript">
Пример #2
0
function smart_render_action_results($results, $title)
{
    if ($results['form_complete'] != 0) {
        beginTable();
        echo "<table class='report' width='100%' border='0' cellspacing='0' cellpadding='0'>";
        foreach ($results['results'] as $result) {
            echo "<tr class='row" . gen_row(1) . "'>";
            echo "<td>" . $result['action'] . "</td><td>" . $result['status'] . "</td>";
            echo "</tr>";
        }
        echo "</table>";
        endTable($title);
    }
}