This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Work in progress | |
version: '3' | |
services: | |
mysql: | |
image: mariadb | |
volumes: | |
- ./data/mysql:/var/lib/mysql #Store mysql files in the docker/data/mysql directory | |
- ../application/docker/dump.sql:/docker-entrypoint-initdb.d/dump.sql | |
environment: | |
MYSQL_ROOT_PASSWORD: scrrratch_local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://www.curacaowebhosting.com" title="Casino hosting">Casino hosting</a> by CuracaoWebhosting.com and <a href="https://www.gamblingtec.com" title="Gambling Software">Gambling Software</a> by GamblingTec.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="featurette" id="contact"> | |
<h2 class="featurette-heading">Referrer | |
<span class="text-muted">data</span> | |
</h2> | |
<p class="lead"> | |
As a marketer you will need to learn how to send data to our games, the following cookie data is associated to your account: | |
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Text file with numbers on each line | |
$lines = file('location/of/text/file.txt'); | |
$i = 1; | |
$n = 1; | |
foreach ($lines as $line_num => $line) { | |
$array[$n][] = explode(' ',$line); |