I was just at the server-side forum and saw some dude post this. I’m guessing it’s Swedish…
<?PHP
$query = "SELECT FROM forhandlere WHERE id, navn, fylke='$_POST[fylke]', logo, merke='$_POST[merke]', funksjon='$_POST[funksjon]', text, web;";
$result = @mysql_query("$query") or die('<p class="error">There was an unexpected error grabbing from the database.</p>');
while ($row = mysql_fetch_array($result)) {
$logo = ($row['logo']);
$ename = ($row['navn']);
$fylke = ($row['fylke']);
$eemail = ($row['merke']);
$efunksjon = ($row['funksjon']);
$eepost = ($row['text']);
$eweb = ($row['web']);
// .....
I have several questions regarding this. Should English always be used in your code? How do countries that don’t use Roman characters code? Is Konami’s code written with Kanji characters or something? :hugegrin: It doesn’t look like Hideo Kojima or his programmers can speak English too well.