[Help] External Texts Loader

Predicate

New Member
Sep 2, 2011
16
1
Hello, I made a External text loader in php:

Code:
PHP:
<?php
error_reporting(E_ALL);
mysql_connect("localhost", "root", "123");
mysql_select_db("thunderbolt");
 
$query = mysql_query("SELECT * FROM external_texts");
 
while($text = mysql_fetch_assoc($query))
{
    echo $text['xkey'] . "=" . $text['xvalue'] . "<br>";
}
 
?>

"external.texts.txt" : " ",

The following thing is my last line:
catalog.club.buy.header=Koop nu Byte Club!

On my hotel it still does say catalog.club.buy.header.
Why doesn't it work?
 

Users who are viewing this thread

Top