PHP: Quick Un-Zipper


<?php /** * Income Pitbull – Quick UnZipper * Place this in the same directory of the zip file. Then go to the file in your browser, enter the file name in the textbox, and…

hmm

A Simple Server-to-Server File Transfer Script (PHP)


<?php set_time_limit(0); //Unlimited max execution time   $path = ‘newfile.zip’; $url = ‘http://example.com/oldfile.zip’; $newfname = $path; echo ‘Starting Download!<br>’; $file = fopen ($url, “rb”); if($file) { $newf = fopen ($newfname, “wb”); if($newf) while(!feof($file)) { fwrite($newf,…

hmm

PHP: Recursively Zipping Files & Folders to .zip File


https://gist.github.com/toddsby/f98d82314259ec5483d8 <?php /* * PHP: Recursively Backup Files & Folders to ZIP-File * (c) 2012-2014: Marvin Menzerath – http://menzerath.eu * contribution: Drew Toddsby */ // Make sure the script can handle large folders/files ini_set(‘max_execution_time’, 600);…

hmm

;


Uzay; uzay içindir, sanat; sanat için Ben senin içinim, sen benim için Her anlamda. Ve ben senin içinim.  

hmm

Creating a WordPress Admin Options Page


I do not like the WordPress Settings API. This tools is very useful for creating WordPress admin settings page with options. You can insert a text, textarea, radio group, checkbox and more fields in your…

hmm

[PHP] How to convert array to SimpleXML?


Question: How can I convert an ARRAY to a SimpleXML object in PHP? This code will convert array of any depth to xml document and works under php 5.2 Array ( [‘total_stud’]=> 500 [0] =>…

hmm

Redirect Detective: Yeniden yönlendirme izleyicisi


Redirect Detective sitesi bir yönlendirme olduğunda bunun hangi yolu izlediğini size gösteren basit güzel bir uygulama yapmış. Redirect Detective is a free redirect checker that allows you to see the complete path a redirected URL…

hmm

Kamp Malzeme Listesi


Kampa gidecekler için bir malzeme listesi faydalı olabilir. Kamp Malzeme Listesi: * Kamp Çantası – giysi, çorap, gözlük vs * Çadır * Mat + Uyku tulumu * Kamp Bıçağı + çakı * Kafa Feneri +…

hmm

IcoMoon


IcoMoon web uygulamaları için vektörel icon çözümü sağlayan güzel bir servis. Ancak ben isteğim ikonları seçip sadece bunları export edip kullanabilme güzelliğini sevdim. Tavsiye olur. https://icomoon.io/app/

hmm

Şans oyunları hangi gün çekiliyor, kazanma olasığı nedir?


Şans oyunlarına eskiden beridir karşı olan birisi olarak, eğer On Numara, Şans Topu, Süper Loto, Sayısal Loto gibi oyunlarla hayatını değiştirmek isteyenler vardır diye düşünüp bir hesaplama yaptım. Buna göre bu oyunlarda kazanma şansınız yok…

hmm