mirror of
https://github.com/retailcrm/NameCaseLib.git
synced 2025-02-06 17:19:22 +03:00
13 lines
289 B
PHP
13 lines
289 B
PHP
<?php
|
|
$type = 'boy';
|
|
$val = 'second';
|
|
mysql_connect('localhost', 'root', '');
|
|
mysql_select_db('names');
|
|
mysql_set_charset('utf8');
|
|
$arr = file($type . $val . '.txt');
|
|
foreach ($arr as $cd)
|
|
{
|
|
mysql_query('INSERT INTO ' . $type . $val . ' (`name`) VALUES (\'' . trim($cd) . '\')');
|
|
}
|
|
?>
|