One Hat Cyber Team
Your IP :
216.73.216.216
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
/
vo
/
public_html
/
kats
/
View File Name :
details.php3
<html> <head> </head> <body> <h1>Participant details</h1> <? include("auth.php3"); mysql_connect("",$user,$password); $result=mysql_db_query("conference", "select * from $table where id=$id"); $row=mysql_fetch_array($result); mysql_free_result($result); $lastname=$row["lastname"]; $firstname=$row["firstname"]; $institution=$row["institution"]; $country=$row["country"]; $talk=$row["talk"]; $abstract=$row["abstract"]; $email=$row["email"]; $fax=$row["fax"]; ?> <table> <tr> <TD ALIGN=right><B>Name</B>: <td> <? echo "$firstname $lastname";?> <tr> <TD ALIGN=right><B>From:</B> <td><? echo "$institution, $country";?> <tr> <TD ALIGN=right><B>Talk:</B> <td><? echo "$talk";?> <TR VALIGN=top> <TD ALIGN=right><B>Abstract:</B> <td><? echo nl2br($abstract);?> <tr> <TD ALIGN=right><B>E-mail:</B> <td><a href=mailto:<? echo "$email"; ?>> <? echo $email ?></a> <tr> <TD ALIGN=right><B>Fax:</B> <td><? echo "$fax";?> </table> <a href="list.php3">Back to the list</a> <br> <a href="kats2000.html">Back to the Conference homepage</a> </body>