1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
session_start(); $dbh = mysql_connect("192.168.171.21", "asldsa", "jvP93a3v");
if (!$dbh) { die('Could not connect: ' . mysql_error()); } $selected = mysql_select_db("aslddb", $dbh) or die("Could not select first_test"); mysql_query("SET NAMES UTF8"); ?>
|