11 lines
161 B
PHP
11 lines
161 B
PHP
<?php
|
|
$con = mysql_pconnect("localhost","root","");
|
|
if (!$con){
|
|
die('Could not connect: ' . mysqli_error($connect));
|
|
}
|
|
|
|
mysql_select_db("siakoff", $con);
|
|
|
|
|
|
?>
|