You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
295 B
PHP
9 lines
295 B
PHP
<?php
|
|
include ("../include/funktion_db.php");
|
|
|
|
$con = mysql_connect("localhost", "root", "changeme") or die("connection failed");
|
|
$sel = mysql_select_db("tabel") or die(mysql_error());
|
|
mysql_query("SET CHARACTER SET utf8;", $sql_connection);
|
|
mysql_query("SET NAMES 'utf8'", $sql_connection);
|
|
?>
|