Make website dynamic with programming code in Muffin Builder
Hello, i have built all my content in muffin builder. Actually i have to integrate a random function that pics up words from a list in a txt- file. Like "The Word of the day!"
I startet to write the code in php but muffin-builder do not recognize php code. Is that right or is there a way to do it?
Maybe there is antother language like C or Javascript that can do my work in muffin builder.
Or exist some plugin that works fine in muffinbuilder and can load external information. Maybe Revolution Slider with widgets in Sidebars?
I think that is a common think and i hope that i can do it on my webpage.
Thank you very much for your help!
I startet to write the code in php but muffin-builder do not recognize php code. Is that right or is there a way to do it?
Maybe there is antother language like C or Javascript that can do my work in muffin builder.
Or exist some plugin that works fine in muffinbuilder and can load external information. Maybe Revolution Slider with widgets in Sidebars?
I think that is a common think and i hope that i can do it on my webpage.
Thank you very much for your help!
Comments
where did you started writing this php code?
<?php
$word = file("wordoftheday.txt");
$word_nummer = rand(0, count($word)-1);
echo $word[$word_nummer];
?>
Must I write something bevor the php code that he will recognized it?
Is Javascript working in Muffin- Builder? Maybe something like
<script type="text/javascript">window.alert("Hallo Welt!");</script>
Sorry for my english. I am still learning.
Michael