Search found 2 matches
- 19. January 2013 06:59
- Forum: Board3 Portal 2.0.x - English Support
- Topic: php script in module
- Replies: 3
- Views: 16549
Re: php script in module
i took a look at it but it doesn't seem to help me. i figured i could just create a custom block and paste the script in, but it dosent seem to work. I found information about editing a module file but i dont rly understand why the custom block option wont work. Do i have to create a module for it ...
- 17. January 2013 06:44
- Forum: Board3 Portal 2.0.x - English Support
- Topic: php script in module
- Replies: 3
- Views: 16549
php script in module
<style>
#errormsg {
color:000000;
}
</style>
<h1><div id="errormsg">
<?php
$url = "http://www.agecommunity.com/query/esocounts.xml";
$xml = simplexml_load_file($url);
foreach ($xml->online as $online) {
echo "$online online";
}
?>
</div>
i want to put this script in a module on the ...
#errormsg {
color:000000;
}
</style>
<h1><div id="errormsg">
<?php
$url = "http://www.agecommunity.com/query/esocounts.xml";
$xml = simplexml_load_file($url);
foreach ($xml->online as $online) {
echo "$online online";
}
?>
</div>
i want to put this script in a module on the ...