| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/ilink/ |
Upload File : |
<!DOCTYPE html>
<!--
*********************************
Project: Internet Link
File :
Version: 2021-01-13
Author : M. Kukic
Note : PHP v5 + MySQL + Apache
**********************************
-->
<html>
<style>
table, th, td {
border: 1px solid black;
}
th, td {
padding: 4px;
text-align: center;
}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
<link rel='shortcut icon' type='image/png' href='favicon.png'/>
<title>ILink</title>
</head>
<body>
<!--
http://net-tim/www/link/hid-tog.php?id=222
-->
<?php
include "config.php";
// GET metod prenosa DESC
$t_id = $_GET["id"];
echo"<div style='width:".$resn."px; word-wrap:break-word;'>";
echo "<fieldset>";
echo "<legend><h3>iLink - Hide</h3></legend>";
echo "<table border=\"0\">";
echo "</fieldset>";
echo "ID: ".$t_id;
echo "<br><br>";
//$dbt="link";
$sql = "SELECT * FROM $dbt WHERE id=".$t_id;
if ($phpv==5){
$result = mysql_query($sql, $dbh) or die(mysql_error());
$numofrows = mysql_num_rows($result);
$row = mysql_fetch_array($result);
}else{
$result = mysqli_query($dbh, $sql) or die (mysqli_error($dbh));
$numofrows = mysqli_num_rows($result);
$row = mysqli_fetch_array($result);
}
//
echo "Num Rec: ".$numofrows;
echo "<br><br>";
$t_hid=$row['hid'];
echo "Hide Old: ".$t_hid;
echo "<br><br>";
if ($t_hid==0){
$t_hid=9;
}else{
$t_hid=0;
}
echo "Hide New: ".$t_hid;
echo "<br><br>";
//
$sql = "UPDATE $dbt SET hid='".$t_hid."' WHERE id =".$t_id;
if ($phpv==5){
mysql_query($sql, $dbh) or die(mysql_error());
mysql_close($conn);
}else{
mysqli_query($dbh, $sql) or die (mysqli_error($dbh));
mysqli_close($conn);
}
echo "OK";
echo "<hr>";
echo "<a href='javascript:history.go(-1)'><img src='img/back.png'></a><a href='ident.php?txt=".$u_pass."'><img src='img/hom.png'></a>";
?>
</div>
</body>
</html>