Skip to content

Instantly share code, notes, and snippets.

@spddl
Last active December 8, 2018 15:32
Show Gist options
  • Select an option

  • Save spddl/234a5b21718251354e81dfb4ec68937c to your computer and use it in GitHub Desktop.

Select an option

Save spddl/234a5b21718251354e81dfb4ec68937c to your computer and use it in GitHub Desktop.
<?php
// Zeile für Zeile
$i = 1;
echo "<div class='col-xs-10'>"; // Das Diagramm
while ($i <= 7) {
?>
<!-- ############################# Beginn Diagramm ##################################### -->
<!-- Chart code -->
<script>
<?php echo "var chart = AmCharts.makeChart('chartdiv" . $_wtag . "',; ?>
Aufbau des Diagramms
})
</script>
<!-- ############################# Ende Diagramm ##################################### -->
<?php
// <!-- Zeige das Diagramm -->
echo "<div id='chartdiv" . $_wtag . "'></div>";
}
echo "</div>"; // Zeile für Zeile Ende
$i = $i + 1;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment