Files

5 lines
154 B
PHP
Raw Permalink Normal View History

2017-05-26 15:17:48 +04:00
<?php
$connection = mysql_connect('localhost','root','root') or die(mysql_error());
$database = mysql_select_db('test_csv') or die(mysql_error());
?>