SELAMAT DATANG DI BLOG KAMI

Page Views

Blog Archive

Theme images by Storman. Powered by Blogger.

Labels

Popular Posts

Video Of Day

Thursday 31 January 2013

Tutorial PHP : Kumpulan Fungsi String pada PHP Lengkap dengan Penjelasan dan Contoh

- No comments
Halo sahabat Belajar Pintar PHP, sudah ada satu minggu lebih saya tidak memposting diblog ini, karena saya sedang mengerjakan blog saya yang lain yang masih baru saya buat. Oke langsung saja, tanpa banyak basa-basi, kali ini saya akan menshare kepada saudara-saudara sekalian tutorial php tentang Kumpulan fungsi-fungsi string pada php lengkap dengan penjelasan dan contohnya. Penasaran ? langsung saja kita cek di TKP.

addslashes


Fungsi : Memberi garis miring atau slash jika ada tanda kutip pada string atau kata maupun kalimat
Sintaks PHP:

addslashes ( string $str )

Contoh Penggunaanya :

<?php
$str = "hari ini adalah harijum'at";

echo addslashes($str);
//Hasilnya : hari ini adalah hari jum\'at
?>

chr

Fungsi : Menghasilkan karakter yang spesifik berdasarkan kode ascii
Sintaks PHP :
chr ( int $ascii )

Parameter :
$ascii = kode ascii

Contoh penggunaannya:
<?php
$kode = 81;
$str = chr($kode);
echo "karakter dengan kode ascii $kode adalah $str";
//Hasilnya : karakter dengan kode ascii 81 adalah Q
?>

count_chars

Fungsi : Menghitung frekuensi munculnya karakter di suatu string
Sintaks PHP :
count_chars ( string $string [, int $mode= 0 ] )

Parameter :
$string = String yang ingin dihitung frekuensi karakter yang muncul
$mode = Opsional, Default = 0
  • 0 - Menghitung semua karakter dalam bentuk array, walaupun nggak ada di dalam string
  • 1 - Sama seperti 0, tapi hanya yang jumlah frekuensi besar dari 0, artinya hanya karakter yang ada di dalam string
  • 2 - Sama seperti 0, tapi hanya karakter yang jumlah frekuensinya sama dengan 0
Contoh penggunaan :

<?php
$data = "Hello World";
foreach (count_chars($data, 1) as $i => $val) {
   echo "Ada $val buah karakter \"" , chr($i) , "\" di dalam string.\n<br>";
}
?>

Hasilnya :
Ada 1 buah karakter " " di dalam string.
Ada 1 buah karakter "H" di dalam string.
Ada 1 buah karakter "W" di dalam string.
Ada 1 buah karakter "d" di dalam string.
Ada 1 buah karakter "e" di dalam string.
Ada 3 buah karakter "l" di dalam string.
Ada 2 buah karakter "o" di dalam string.
Ada 1 buah karakter "r" di dalam string.

explode

Fungsi : Membagi string menjadi array berdasarkan string pembatas yang ditentukan
Sintaks PHP:
explode ( string $delimiter , string $string [, int $limit ] )

Parameter :
$delimiter : string pembatas
$string : string yang akan dibagi
$limit : Batas maksimal elemen array yang dibuat

Contoh Penggunaan:
<?php
$str = 'one|two|three|four';

print_r(explode('|',$str));
// hanya 2 elemen array
print_r(explode('|', $str, 2));
?>

Hasilnya :
Array
(
    [0] => one
    [1] => two
    [2] => three
    [3] => four
)
Array
(
    [0] => one
    [1] => two|three|four
)

htmlspecialchars

Fungsi : Mengubah karakter < dan > menjadi &lt; dan &gt;. Ini sangat berguna untuk mencegah user yang menggunakan tag html ketika menginput data ke website kita, seperti melalui buku tamu, dan sebagainya.
Sintaks PHP :
htmlspecialchars ( string $string )

Contoh Penggunaan:
<?php
$teks = "<b>hai apa kabar</b>";
echo htmlspecialchars($teks);
?>


implode

Fungsi : menggabungkan elemen array menjadi satu string
Sintaks PHP:
implode ( [string $antara] , array $array )

Parameter :
$antara, string atau karakter antara elemen yang akan disatukan, bersifat opsional, bisa diisi atau tidak
$array, array yang akan disatukan.
Contoh Penggunaan:
<?php
$array = array('lastname', 'email', 'phone');
$teksbaru = implode("--",$array);
echo $teksbaru;
//hasilnya lastname--email--phone
?>


md5

Fungsi : untuk men-ekripsi string dengan teknik md5, bersifat satu arah, artinya tidak ada fungsi untuk mengembalikannya/dekripsi. Kecuali kalau pake kode hacking khusus
Sintaks PHP :
md5 (string $string)

Contoh Penggunaan:
<?php
$password = "passwordku";

echo md5($password);
//Hasilnya : 88f200b77cccee4a6e95c383d33e0f22
?>

nl2br

Fungsi : mengubah baris baru (\n) menjadi <br>, berguna jika anda ingin ketika user input di teks area, kemudian menekan enter. Nah agar nantinya baris baru yang dibuat di textarea bisa ditampilkan, harus diubah \n menjadi <br>
Sintaks PHP :
nl2br ( string $string )

Contoh :
<?php
$teks = "Hai \n Apakabar";
$teks = nl2br($teks);
echo $teks;
?>


number_format

Format angka dengan dengan menggroupkan berdasarkan ribuan
Sintaks PHP :
number_format ( float $number [, int $decimals ] )
atau
number_format ( float $number , int $decimals , string $dec_point , string $thousands_sep )

Berikut keterangan kode diatas:
$number, adalah angka yang akan diformat
$decimals, adalah jumlah angka di belakang koma
$dec_point, adalah tanda desimal, apakah pake titik atau koma
$thousands_sep, adalah tanda pembagi ribuan, apakah koma atau titik atau lainnya

Contoh :
<?php
$number = 123564.56;
$format_number = number_format($number, 2, '.', ',');
echo $format_number;
//Hasil 123,564.56
?>

ord

Fungsi : Menghasilkan nilai ASCII suatu karakter, kebalikan dari fungsi chr()
Sintaks PHP :
ord ( string $string )

Contoh penggunaan:
<?php
$str = "x";

echo ord($str);
//Hasilnya 120
?>


parse_str

Fungsi : Mengubah string menjadi variabel
Sintaks PHP :
parse_str ( string $str [, array &$arr ] )

Parameter :
$str, adalah string yang akan di ubah, anda juga bisa membuat string menjadi variabel seperti metode GET, contoh : file.php?nama=ivan&alamat=medan
$arr, adalah outputnya dalam bentuk array
Contoh penggunaan :
<?php
$str = "nama=Ivan&email=Ivan@yahoo.com";
parse_str($str);
echo $nama;                 // Hasilnya Ivan
echo $email;                // Hasilnya Ivan@yahoo.com
parse_str($str, $output);
echo $output['nama'];       // Hasilnya Ivan
echo $output['email']       // Hasilnya Ivan@yahoo.com
?>

print

Fungsi : sama seperti echo, menghasilkan/mencetak string
Sintaks PHP:
print (String $str )

Contoh Penggunaan:
<?php
print("Hello World");
?>

str_pad

Fungsi : Menempatkan string ditempat yang panjangnya ditentukan
Sintaks PHP :
str_pad ( string $input , int $pad_length [, string $pad_string= " " [, int $pad_type= STR_PAD_RIGHT ]] )

Parameter :
$input, adalah string input
$pad_length, adalah panjang pad
$pad_string, adalah string mengisi kekosongan
$pad_type, adalah tipe pad, kanan (STR_PAD_RIGHT), kiri( STR_PAD_LEFT), atau tengah( STR_PAD_BOTH)

Contoh penggunaan :
<?php
$input = "Ivannow";
echo str_pad($input, 15)."<br>";                      // Hasil "Ivannow       "
echo str_pad($input, 15, "-=", STR_PAD_LEFT)."<br>";  // Hasil "-=-=-=-ivannow"
echo str_pad($input, 15, "_", STR_PAD_BOTH)."<br>";   // Hasil "___ivannow____"
echo str_pad($input, 15 , "___")."<br>";              // Hasil "ivannow_______"
?>


str_repeat

Fungsi : mengulang string
Sintaks PHP :
str_repeat ( string $input , int $multiplier )

Parameter :
$input, adalah string yang akan diulang
$multiplier, berapa kali diulang
Contoh penggunaan :
<?php
echo str_repeat("x", 10);
//hasilnya xxxxxxxxxx
?>


str_replace

Fungsi : Mengganti string yang dicari dengan string pengganti
Sintaks PHP :
str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

Parameter :
$search, adalah bagian string yang akan di ganti
$replace, adalah string pengganti
$subject, adalah string yang akan diproses
$count, jumlah bagian yang cocok dan diganti

Contoh penggunaan :
<?php
$str = "Hello Apa kabar";
$str2 = str_replace("a","x",$str,$count);
echo $str2."<br>";
echo $count;
//Hasil : Hello Apx kxbxr
//hasil 3
?>


str_shuffle

Fungsi : mengacak string
Sintaks PHP:
str_shuffle ( string $str )

Contoh penggunaan:
<?php
echo str_shuffle("Desrizal");
//Hasilnya macam macam bisa : zDisalre
?>


str_split

Fungsi : Mengubah string ke array
Sintaks PHP :
str_split ( string $string [, int $split_length= 1 ] )

$string, adalah string yang akan di ubah
$split_length adalah maksimum panjang potongan
Contoh penggunaan :
<?php
$str = "Hello Friend";
$arr1 = str_split($str);
$arr2 = str_split($str, 2);
print_r($arr1);
print_r($arr2);
?>

Hasilnya :
Array
(
    [0] => H
    [1] => e
    [2] => l
    [3] => l
    [4] => o
    [5] => 
    [6] => F
    [7] => r
    [8] => i
    [9] => e
    [10] => n
    [11] => d
)
Array
(
    [0] => He
    [1] => ll
    [2] => o
    [3] => Fr
    [4] => ie
    [5] => nd
)


str_word_count

Fungsi : Menghitung jumlah kata dalam string
Sintaks PHP :
str_word_count ( string $string [, int $format= 0 [, string $charlist ]] )

Parameter :
$string, adalah string yang akan dihitung
$format
  • 0 - jumlah kata yang ditemukan
  • 1 - Menghasilkan suatu array yang merupakan semua kata yang ditemukan dalam string
  • 2 - Menghasilkan array asosiatif
$charlist, karakter tambahan yang dianggap kata

Contoh penggunaan :

<?php
$str = "Budi pergi ke pasar";

echo str_word_count($str);
//hasilnya 4
?>


strip_tags

Fungsi : Menghilangkan tag HTML dan PHP
Sintaks PHP :
strip_tags ( string $str [, string $allowable_tags ] )

Parameter :
$str, string yang akan dihilangkan tag HTML nya
$allowable_tags, adalah tag yang tidak akan dihilangkan

Contoh penggunaan:
<?php
$teks = "<b>Hallo apa kabar</b>";
echo strip_tags($teks);
?>


stripslashes

Fungsi : Menghilangkan garis miring tanda kutip di string
Sintaks PHP :
stripslashes ( string $str )

Contoh penggunaan :
<?php
$str = "Sekarang hari jum\'at";
echo stripslashes($str);
// Hasil: Sekarang hari jum'at
?>


strlen

Fungsi : Mendapatkan panjang string
Sintaks PHP :
<?php
$str = 'abcdef';
echo strlen($str); // hasil 6
$str = ' ab cd ';
echo strlen($str); // hasil 7
?>


strrev

Fungsi : Membalikkan string
Sintaks PHP:
strrev ( string $string )

Contoh penggunaan :
<?php
echo strrev("Hello world!"); // Hasil "!dlrow olleH"
?>

substr_replace

Fungsi : Mengganti teks pada bagian tertentu string
Sintaks PHP :
substr_replace ( mixed $string , string $replacement , int $start [, int $length ] )

Parameter :
$string, adalah string yang akan diproses/diganti
$replacement, adalah string pengganti dari substring yang ditentukan
$start, adalah sub string diawali dari karakter ke berapa
$length, adalah panjang sub string

Contoh penggunaan :
<?php
$teks = "ivansilalahi";
echo substr_replace($teks, 'san', 3, 2);
//hasilnya : ivasanilalahi
?>

substr

Fungsi : Menghasilkan bagian dari string
Sintaks PHP :
substr ( string $string , int $start [, int $length ] )

Parameter :
$string, adalah string yang akan diambil bagiannya
$start, posisi awal karakter yang akan diambil
$length, adalah panjang dari subs string

Contoh penggunaan :
<?php
echo substr("ivansilalahi", 3)."<br>";          //Hasilnya nsilalahi
echo substr("ivansilalahi", 3, 2)."<br>";       //Hasilnya ns
echo substr("ivansilalahi", -3)."<br>";         //Hasilnya ahi
echo substr("ivansilalahi", -3, 2)."<br>";      //Hasilnya ah
?>

Demikian tutorial php untuk kali ini, semoga bermanfaat dan jangan lupa like dan komentarnya.

Wednesday 23 January 2013

Connectify Hotspot Professional 4.1.0.25941 Incl Key

- No comments
Connectify Hotspot Professional 4.1.0.25941
Connectify Hotspot Professional 4.1.0.25941 Incl Key | 4.8MB
Connectify Hotspot Professional is an application that can make your laptop with Windows 7 operating system into a WiFi Hotspot internet to share with friends, co-workers, and mobile devices. Connectify running on Notification Tray next to the system clock. Click on the small white triangle it will show all icons, including icons Connectify radio waves.

When Connectify run in mode "Ad Hoc" is set it to (Wireless Card, Internet sharing, firewall, etc.) just the push of a button. It also provides advanced features that show what the network is connected to the computer and right click to Explore the drive and printer.

Key Features:

Software-based Wireless Router
Taking the Internet are the connection wirelessly without additional hardware

Connect with Mobile Devices
WiFi device connects easily to your mobile phone network

Share Wi-Fi from 3G/4G Network
Internet supports a variety of 3G/4G cards and other USB

more details visit: http://www.connectify.me


Download Now
Connectify Hotspot Pro Tusfiles
Connectify Hotspot Pro Rapidshare

Rar Password
freesoft88.blogspot.com

McAfee VirusScan Enterprise 8.8 Patch 3

- No comments
McAfee VirusScan Enterprise 8.8 Patch 3
McAfee VirusScan Enterprise 8.8 Patch 3 | 50.3MB
McAfee VirusScan Enterprise protects your PC desktop and file servers from threats of viruses, worms, Trojan horses, and malicious code. McAfee anti-virus protection needs to the next level, integrating elements of intrusion prevention and firewall technology into a single solution for PCs and file servers. This is a powerful combination in providing protection really proactive threats including buffer - overflow exploits and blended attacks and features advanced management outbreak responses to reduce the damage and costs. All managed by McAfee ePolicy Orchestrator or ProtectionPilotT for scalable security policy compliance and graphical reporting.

Features:
Comprehensive McAfee anti-virus protection.
Buffer overflow prevention (IPS feature).
Complete outbreak response.
Port blocking/lockdown (firewall feature).
Application monitoring: email engines (firewall feature).
File blocking, directory lockdown, folder/share blocking (IPS feature).
Unwanted program security.

more detail visit: http://us.mcafee.com/?

Download Now
McAfee Tusfiles
McAfee Rapidshare

Rar Password
freesoft88.blogspot.com

Tuesday 22 January 2013

Tutorial PHP : Cara Mem-Format Bilangan Bulat menjadi Format Mata Uang Rupiah dengan PHP

- No comments
Halo sahabat setia Belajar Pintar PHP, pada tutorial kali ini, kita akan membahas mengenai bagaimana cara membuat atau memformat suatu bilangan bulat menjadi bentuk format mata uang rupiah, dan tutorial ini juga bisa digunakan untuk format mata uang lainnya. Artikel ini saya buat karna saya merasa ini sangat penting buat anda yang sedang membuat website terutama shop online.

Oke, didalam tutorial kali ini kita akan membuat sebuah fungsi (function) yang nantinya akan kita panggil untuk mencetak format rupiah. Fungsi ini kita buat agar program yang kita buat menjadi sederhana, sehingga setiap kali kita perlu untuk memformat sebuah bilangan menjadi format rupiah, kita hanya perlu memanggil fungsi ini. Fungsi ini akan kita beri nama “formatRupiah”.

Perhatikan Script PHP dibawah ini :

<?php
function formatRupiah($nilaiUang)
{
}  

Oke mari kita bahas sedikit demi sedikit :
Kalau kita perhatikan dari Script PHP diatas, dapat kita lihat bahwa setiap kita memanggil fungsi “formatRupiah”, kita juga harus menyertakan variable “$nilaiUang”. Nilai uang ini adalah bilangan bulat yang akan kita rubah formatnya menjadi rupiah. Kita misalkan kita menyertakan nilai bilangan bulat yaitu “5000”, maka, fungsi ini akan merubahnya menjadi “Rp 5.000’-”.
Perhatikan contoh dibawah ini :

  1. int 5000 ===> Rp 5.000,-
  2. int 7000   ===> Rp 7.000,-
  3. int 7020   ===> Rp 7.020,-
  4. int 30100 ===> Rp 30.100,- 

Jadi, dari beberapa contoh diatas, kita dapat melihat bahwa alur program atau algoritma dari fungsi ini adalah sebagai berikut :

  1. Membaca jumlah karakter dari bilangan bulat yang dimasukkan.
  2. Menambahkan string ‘Rp’ di bagian awal data
  3. Membatasi tiga karakter terakhir dengan tanda titik ( . )
  4. Menambahkan karakter koma dan tanda minus (,-) di bagian akhir data

Dan dari alur / Algoritma program yang tersusun diatas, kita dapat melengkapi program fungsi “formatRupiah” diatas menjadi seperti Script PHP dibawah ini :
< ?php
//sript by: planetsphp.blogspot.com
function formatRupiah($nilaiUang)
{
  $nilaiRupiah   = "";
  $jumlahAngka   = strlen($nilaiUang);
  while($jumlahAngka > 3)
  {
    $nilaiRupiah = "." . substr($nilaiUang,-3) . $nilaiRupiah;
    $sisaNilai = strlen($nilaiUang) - 3;
    $nilaiUang = substr($nilaiUang,0,$sisaNilai);
    $jumlahAngka = strlen($nilaiUang);
  }

  $nilaiRupiah = "Rp " . $nilaiUang . $nilaiRupiah . ",-";
  return $nilaiRupiah;
}
?>


Lalu sekarang Script fungsi telah selesai kita buat. Untuk selanjutnya jika kita ingin merubah suatu bilangan bulat kedalam format mata uang rupiah kita tinggal memanggil fungsi tersebut.
Perhatikan Script PHP dibawah ini :
< ?php
//sript by : Belajar pintar PHP
function formatRupiah($nilaiUang)
{
  $nilaiRupiah      = "";
  $jumlahAngka  = strlen($nilaiUang);
  while($jumlahAngka > 3)
  {
    $nilaiRupiah    = "." . substr($nilaiUang,-3) . $nilaiRupiah;
    $sisaNilai         = strlen($nilaiUang) - 3;
    $nilaiUang       = substr($nilaiUang,0,$sisaNilai);
    $jumlahAngka = strlen($nilaiUang);
  }

  $nilaiRupiah       = "Rp " . $nilaiUang . $nilaiRupiah . ",-";
  return $nilaiRupiah;
}

//untuk mendapatkan nilai Rupiah, panggil fungsi formatRupiah() dan sertakan nilainya
echo formatRupiah (2500) ."<br>";
echo formatRupiah (350000) ."<br>";
echo formatRupiah (30500);
?>


Jika sudah selesai, sekarang ada boleh coba menyimpan Script PHP ini dengan nama terserah anda (yang penting extensi-nya menggunakan *.php), lalu kemudian letakkan didalam direktori webserver anda (contoh: C:\\Apache\htdocs\), lalu jalankan program ini. Jika semuanya sudah anda jalankan dengan benar maka anda akan melihat tulisan di browser anda seperti dibawah ini :
  1. Rp 2.500,-
  2. Rp 350.000,-
  3. Rp 30.500,-

Oke, sekian dulu tutorial PHP kali ini, saya harap anda dapat memahami dan mengembangkannya sesuai kebutuhan anda, jika anda mengalami kesulitan dalam pengembangan tutorial ini, tinggalkan komentar anda dibawah ini dan jangan lupa share-nya ya, Hitung-hitung sumbangan anda kepada saya.
Selamat belajar Para calon Programer Dunia.

Tips dari saya nih:

"Belajar Program itu harus dimulai dari hal yang kita sukai dan yang menurut kita lebih gampang".

Thanks.

Loaris Trojan Remover 1.2.7.5

- No comments
Loaris Trojan Remover 1.2.7.5
Loaris Trojan Remover 1.2.7.5 | 23.7MB
Trojan Remover helps you to remove Malware attacks, Trojan Horses, Worms, Adware, and Spyware. Trojan Remover is very good at detecting this Malware will give you the comfort of your computer systems.

Trojan Remover is designed specifically to disable / remove Malware without the user having to edit system files or the Registry. The program also removes the additional system modifications Malware doing system changes are ignored by some standard antivirus scanners. Trojan Remover scans ALL the files loaded at boot time for Adware, Spyware, Remote Access Trojans, Internet Worms and other malware.

Reset Internet Explorer Home / Start / Settings Search Page
Some Malware programs make changes to the Internet Explorer Home, Start and Search Page settings in order to re-direct the web browser to different websites.

Reset HOSTS file
Preventing some Malware programs add entries to the HOSTS file, either to deny access to websites (usually security-related or antivirus company websites), or to re-direct access to websites of their choosing.

Reset Windows Update Policies
Some Malware programs attempt to prevent Windows Update and Windows Update option on the configuration screen. This utility will check Windows Update settings and correct them if necessary.

Download Now
Loaris Trojan Remover Tusfiles
Rar Password
freesoft88.blogspot.com

4Videosoft Video Converter Platinum 5.1.18 Portable

- No comments
4Videosoft Video Converter Platinum 5.1.18 Portable
4Videosoft Video Converter Platinum 5.1.18 Portable | 30.5MB
4Videosoft Video Converter Platinum is a Video Converter which can convert between all video formats including MPG, MPEG, MPEG2, MP4, FLV, MOD, M4V, AVI, WMV, MOV, DivX, XviD, etc., along with HD videos, like HD TS, HD MPG, HD MPEG, HD MP4, HD AVI, etc and extract audio from video. 4Videosoft also can convert between all audio formats including MP3, AAC, AC3, WAV, WMA, M4A, OGG, FLAC and AIFF with fast conversion speed and get a very good quality.

In addition to having a conversion function also has powerful editing functions such as Effect, Trim Crop, Join, Watermark, and Take Snapshot.

What you can do:
1. Convert between all the popular video and audio formats.
2. Extract audio from video and convert to any audio formats.
3. Editing functions: Effect, Trim, Crop, Merge, Watermark.

Download Now
4Videosoft Video Converter Tusfiles
Rar Password
freesoft88.blogspot.com

Monday 21 January 2013

Yamicsoft Windows 8 Manager 1.0.5 Full Patch

- No comments
Yamicsoft Windows 8 Manager 1.0.5
Yamicsoft Windows 8 Manager 1.0.5 Full Patch | 9.51MB
Yamicsoft Windows 8 Manager is a utility that helps optimize, tweak, repair and clean up in Windows 8. This utility will improve system speed, eliminate system fault, improve system security, and meet all expectations.

Information
Get detailed system and all hardware information on your system, helping to find installation key of Windows, Office products; show all detailed information of running processes.

Optimizer
Tweak your system to improve windows startup and shutdown speed, tweak your hardware to increase system speed and performance.

Cleaner
Find the file or folder that meet the disk space and shown with chart; Uninstaller Smart fully remove the program from the system without any remaining and Registry entries; Find and clean junk files to increase Hard Disk space; Duplicate File Finder scan your computer for files by name, size of the same and modification time.

Customization
Customize the look of your system by tweaking system Explorer, Desktop, Start Menu, Taskbar and notification area.

Security
Improve system security by tweaking system components, UAC and login settings, Tune up System Restore options, Hide and restrict access to drives and programs; Encrypt / decrypt files, move system folders to a safe location, Undelete files accidentally deleted or formatted the disk, Privacy Protector maintain privacy by eliminating the tracks that leave.

Network
Optimize your Internet connection speed, manage all shares items, Tweak Internet Explorer, IP Switcher can switch your IP address easily on different networks, Editing Hosts file to speed up surfing internet and permit access to specific hosts.

Other
Show the collection of Windows utilities; split and merge files, automatically back up files regularly.

Download Now
Yamicsoft Windows 8 Tusfiles
Yamicsoft Windows 8 Rapidshare

Rar Password
freesoft88.blogspot.com

Sunday 20 January 2013

Hornil Style Pix 1.11.4.0 Portable

- No comments
Hornil Style Pix 1.11.4.0
Hornil Style Pix 1.11.4.0 Portable | 4.4MB
Hornil Style Pix is a free image editor for Windows operating systems. Graphic Style Editor Hornil Pix can be an excellent alternative as PhotoShop image editor. In addition, Hornil Style Pix allows you to work with multiple images. Style Hornil free Pix you can find a variety of graphic filters in the program.

Save time with intuitive User Interface 
Having an intuitive user interface. It is designed to fit easily and comfortable features. If you have no experience, you can learn how to edit image and retouching photos. Hornil StylePix intuitive UI reduces your time to work.

Portable Support
Portable version running from a storage device such as USB flash drive, flash card, or floppy disk. To install Hornil StylePix Portable, just download the portable package and then extract. To start Hornil StylePix Portable, just double click the file StylePix.exe on your portable dirve.

Built-in browser and slide show
Provides built-in browser that allows you to easily discover the image before opening the image. You also can open, copy, delete, and rename images or directories. In addition, the built-in browser supports font browsing. Then, you can explore the font and drag and drop the characters onto the canvas to add a new font object. And you can watch a slide show of images that display a series of images are selected is currently working on the road with full-screen mode.

Comfortable work environment
Working with multiple files MDI (Multiple document interface) tab container and canvas. MDI supports cascade, tile vertically, horizontally tile and adjust the settings icon.

Multi-layer and clustering support
Layers are used to separate different objects of the canvas. Stacked in layers like other transparency. Each layer can have different objects. Hornil supports four types of objects (images, text, and shapes the way) and object groups. Group object contains other objects.

Crop tool
Used to cut or clip the image. It works on all layers of images, visible and invisible.

Batch Processing
Useful for processing of repetitive tasks such as changing the size or type of image file.

more detail visit: http://hornil.com/en/products/stylepix/Features.html

Download Now
Hornil Style Pix Tusfiles
Hornil Style Pix Rapidshare

Rar Password
freesoft88.blogspot.com

Saturday 19 January 2013

KMSnano 12.1 Final

- No comments
KMSnano 12.1 Final
KMSnano 12.1 Final | 21.5MB
KMSnano is a new activator for Windows 8 and Office 2013. All automatic activation only run activator, no further action is required. KMSnano automatically activate all Microsoft products, be it Windows 8 and Office 2013. If the product they are not activated, KMSnano will enable Windows 8 and Office 2013. In addition you can also use KMSnano to activate Windows Vista / Windows 7 and Office 2010.

Features:
Activate: Vista/7/8 Pro / Enter / N and the Office 2010/2013 Retail / VL)
Does not require user intervention (enough to run the activator).
Simultaneous activation of Windows and Office.

Included:
Activate Windows 8 Enterprise.
Activate Windows 8 Professional.
Activate Microsoft Office 2013.
Activate Microsoft Office Visio 2013.
Activate Microsoft Office Project 2013.
Activate Microsoft Office 2010.
Activate Microsoft Office Visio 2010.
Activate Microsoft Office Project 2010.
Activate Windows 7 Enterprise.
Activate Windows 7 Professional.
Activate Windows Vista Enterprise.
Activate Windows Vista Professional.

Requirements:
NET 4.0 or Windows 8

How to Install:
You can see the file readme.txt

Download Now
KMSnano Tusfiles
KMSnano Rapidshare

Rar Password
freesoft88.blogspot.com

Friday 18 January 2013

Uniblue Registry Booster 2013 v6.1.1.1 + Activator

- No comments
Uniblue Registry Booster 2013 v6.1.1.1
Uniblue Registry Booster 2013 v6.1.1.1 + Activator | 4.6MB
Uniblue Registry Booster is a utility to solve all the problems of your Windows registry. This utility will scan the registry, check the file extension errors and other registry conflicts. RegistryBooster will repair or remove unused, corrupted and harmful files so that it will optimize your PC's performance.

RegistryBooster is the safest solution and the most reliable way to clean and optimize your system, freeing up the registry errors and fragmented entries. RegistryBooster using advanced technology in detecting errors, RegistryBooster automatically identifies missing, corrupt or possibly harmful items in your Windows registry, dramatically improving performance and general stability.

Clean Your System and Boost Performance
Improve system performance by cleaning all unwanted registry entries, missing, obsolete and corrupt automatically.

Repair Your PC and Keep It Tuned
Dramatically improve your computing to fix all registry problems and minimizing application errors and crashes.

More Scanning Options
Improvements made to the scanning engine you are now able to scan more sections in the registry.

Log Generation
Displays of all actions performed on the registry. This is very helpful for users who want to know what has been done on their registry.

Windows Vista Compatible
It fully supports Windows Vista and still be able to run on Windows XP. The program automatically adjusts itself according to the version of your operating system so you do not need to configure.

Download Now
Uniblue Registry Booster Tusfiles
Uniblue Registry Booster Rapidshare

Rar Password
freesoft88.blogspot.com

Uniblue SpeedUpMyPC 2013 v5.3.4.5 Incl Key

- No comments
Uniblue SpeedUpMyPC 2013 v5.3.4.5
Uniblue SpeedUpMyPC 2013 v5.3.4.5 Incl Key | 5.6MB
Uniblue SpeedUpMyPC is a utility that was awarded as the software that can automatically keep your PC to optimizing maximum performance in just a few clicks. It can help you free up memory (RAM) and other resources, detect and optimize your internet connection, reassign CPU resources to improve performance, prevent crashes and startup manager that allows you to disable programs that automatically run Windows faster. 

Features: 

User Interface:
- Windows Familiar GUI
- Automatic Performance Scan
- System Overview and Recommendations
- Extensive Manual and Help
- System Optimization State
- System Tray Shortcut
- Detailed System Graphs

Optimization:
- CPU Usage Overview
- CPU Booster Functionality
- Memory Usage Overview
- RAM Optimization
- Disk Usage
- Disk Analyzer and Defrag
- Internet Speed Analyzer
- Internet Speed Optimizer
- Startup Manager
- Process Viewer

Clean-Up:
- Junk Clean-Up Scan
- Detailed Junk Clean-Up Scan Results
- Privacy Protector Scan
- Detailed Privacy Protector Scan Results
- File Shredder
- Uninstall Manager



Download Now
SpeedUpMyPC Tusfiles
SpeedUpMyPC Rapidshare

Rar Password
freesoft88.blogspot.com

NextUp TextAloud 3.0.52 Full Patch

- No comments
NextUp TextAloud 3.0.52
NextUp TextAloud 3.0.52 Full Patch | 21.1MB
NextUp TextAloud is a software which can convert text into voice. TextAloud is the leading text to speech program, available with a sound that draws from ATT. TextAloud uses voice synthesis to convert text into spoken audio. TextAloud can read text from emails, web pages, reports and much more. In addition, TextAloud can also save in MP3 or Windows Media format files for playback on iPod, PocketPC, or on TV with Tivo Home Media Option.

You can do with TextAloud:
Save text to MP3 for portable audio players.
Create messages for your answering machine.
Proofread your own writing.
Create audio files for computer games.
Listen to text read in other languages.
Listen to information while you work on something else.
Study English as a Second Language.
Prepare the big speech by hearing your words read aloud.
Reduce eye strain too much to read.
Listen to an eBook during your trip.
and much more ...
    Features:
    Support for Word, PDF and HTML document.
    Support for multiple Text-To-Speech engines, including international voices.
    Support for WAV, MP3 and WMA audio files.
    Plugin toolbar for Internet Explorer to listen to web pages.
    Correcting for listening to a document that you corrected.
    Load articles using the Clipboard, Document Import, Hot Keys and Drag and Drop.
    Single-Article and Multi-Article Mode for listening to articles one at a time or building a playlist to listen.
      more details visit: http://www.nextup.com/index.html

      NextUp TextAloud 3.0.52
      NextUp TextAloud TusFiles

      NextUp TextAloud Rapidshare
      Rar Password
      freesoft88.blogspot.com

      Thursday 17 January 2013

      Active Uneraser Professional 5.0 Incl Key

      - No comments
      Active Uneraser Professional 5.0
      Active Uneraser Professional 5.0 Incl Key | 164MB
      Active Uneraser Professional is a software that allows you to recover deleted files and folders on FAT12, FAT16, FAT32 and NTFS. Uneraser can even restore files from deleted partitions and reformatted. For DOS and Windows (Console).

      Key Features:
      Now includes Active @ File Recovery for Windows.
      Recovering deleted files located on FAT and NTFS.
      Backup MBR (Master Boot Record), Partition Table and Volume Boot Sectors.
      Restore the MBR and Partition Table from backup for files and folders recovery.
      Unerase files from deleted partitions and logical drives.

      The Professional version includes:
      Active @ File Recovery 9: a tool to recover deleted files and folders (Graphical User Interface).
      Active @ Boot Disk Lite: Windows 7-based environment including a set of recovery tools (Uneraser, File Recovery, and others).
      Bootable Disk Creator was able to prepare for Windows 7 Boot Disk based on USB and CD / DVD media to the system unbootable.
      Download Now
      Active Uneraser Tusfiles
      Active Uneraser Rapidshare

      Rar Password
      freesoft88.blogspot.com

      Tuesday 15 January 2013

      MYSQL : Tipe - Tipe Data yang didukung oleh MySQL

      - No comments
      Oke Sahabat setia Belajar Pintar PHP, Pada artikel ini kita akan membahas tipe - tipe data yang didukung oleh MySQL. Pemilihan tipe data merupakan suatu hal yang cukup penting dalam mengelola server. Salah satu sebabnya adalah berkaitan dengan ruang di harddisk dan memori yang akan “digunakan” oleh data-data tersebut. Terkadang kita mengabaikan hal ini dan hanya ingin mengetahui tipe data tertentu saja tanpa mau tahu tipe data yang lainnya.
      Berikut ini akan diberikan tipe-tipe data yang didukung oleh MySQL yang terambil dari dokumentasi MySQL. Tipe - tipe data ini diberikan dalam bentuk yang siap dituliskan pada sintaks-sintaks MySQL, misalnya Create Table. Pada tipe-tipe data tersebut terdapat beberapa atribut yang memiliki arti sebagai berikut:
      • M, menunjukkan lebar karakter maksimum. Nilai M maksimum adalah 255.
      • D,  menunjukkan jumlah angka di belakang koma. Nilai maksimum D adalah 30 tetapi dibatasi oleh nilai M, yaitu tidak boleh lebih besar daripada M-2.
      • Atribut yang diberi tanda [ dan ] berarti pemakaiannya adalah optional.
      • Jika atribut ZEROFILL disertakan, MySQL akan otomatis menambahkan atribut UNSIGNED.
      • UNSIGNED adalah bilangan tanpa tanda di depannya (misalnya tanda negatif).

      Inilah tipe-tipe data Mysql tersebut:

      • TINYINT[(M)] [UNSIGNED] [ZEROFILL]
      Integer yang sangat kecil jangkauan nilainya, yaitu -128 hingga 127. Jangkauan unsigned adalah 0 hingga 255.
      • SMALLINT[(M)] [UNSIGNED] [ZEROFILL]
      Integer yang kecil jangkauan nilainya, yaitu -32768 hingga 32767. Jangkauan unsigned adalah 0 hinga 65535.
      • MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]
      Integer tingkat menengah. Jangkauan nilainya adalah -8388608 hingga 8388607. Jangkauan unsigned adalah 0 hingga 16777215.
      • INT[(M)] [UNSIGNED] [ZEROFILL]
      Integer yang berukuran normal. Jangkauan nilainya adalah -2147483648 hingga 2147483647. Jangkauan unsigned adalah 0 hingga 4294967295.
      • INTEGER[(M)] [UNSIGNED] [ZEROFILL]
      Sama dengan INT.
      • BIGINT[(M)] [UNSIGNED] [ZEROFILL]
      Integer berukuran besar. Jangkauan nilainya adalah -9223372036854775808 hingga 9223372036854775807. Jangkauan unsigned adalah 0 hingga 18446744073709551615.
      • FLOAT(precision) [ZEROFILL]
      Bilangan floating-point. Tidak dapat bersifat unsigned. Nilai atribut precision adalah <=24 untuk bilangan floating-point presisi tunggal dan di antara 25 dan 53 untuk bilangan floating-point presisi ganda.
      • FLOAT[(M,D)] [ZEROFILL]
      Bilangan floating-point presisi tunggal. Tidak dapat bersifat unsigned. Nilai yang diijinkan adalah -3.402823466E+38 hingga -1.175494351E-38 untuk nilai negatif, 0, and 1.175494351E-38 hingga 3.402823466E+38 untuk nilai positif.
      • DOUBLE[(M,D)] [ZEROFILL]
      Bilangan floating-point presisi ganda. Tidak dapat bersifat unsigned. Nilai yang diijinkan adalah -1.7976931348623157E+308 hingga -2.2250738585072014E-308 untuk nilai negatif, 0, dan 2.2250738585072014E-308 hingga 1.7976931348623157E+308 untuk nilai positif.
      • DOUBLE PRECISION[(M,D)] [ZEROFILL] dan REAL[(M,D)] [ZEROFILL]
      Keduanya sama dengan DOUBLE.
      • DECIMAL[(M[,D])] [ZEROFILL]
      Bilangan floating-point yang “unpacked”. Tidak dapat bersifat unsigned. Memiliki sifat mirit dengan CHAR.   Kata “unpacked'' berarti bilangan disimpan sebagai string, menggunakan satu karakter untuk setiap digitnya. Jangkauan nilai dari DECIMAL sama dengan DOUBLE, tetapi juga tergantung dai nilai atribut M dan D yang disertakan. Jika D tidak diisi akan dianggap 0. Jika M tidak diisi maka akan dianggap 10. Sejak MySQL 3.22 nilai M harus termasuk ruang yang ditempati oleh angka di belakang koma dan tanda + atau -.
      • NUMERIC(M,D) [ZEROFILL]
      Sama dengan DECIMAL.
      • DATE
      Sebuah tanggal. MySQL menampilkan tanggal dalam format 'YYYY-MM-DD'. Jangkauan nilainya adalah '1000-01-01' hingga '9999-12-31'.
      • DATETIME
      Sebuah kombinasi dari waktu (jam) dan tanggal. MySQL menampilkan waktu dan tanggal dalam format 'YYYY-MM-DD HH:MM:SS'. Jangkauan nilainya adalah '1000-01-01 00:00:00' hingga '9999-12-31 23:59:59'.
      • TIMESTAMP[(M)]
      Sebuah timestamp. Jangkauannya adalah dari '1970-01-01 00:00:00' hingga suatu waktu di tahun 2037. MySQL menampilkan tipe data TIMESTAMP dalam format YYYYMMDDHHMMSS, YYMMDDHHMMSS, YYYYMMDD, atau YYMMDD, tergantung dari nilai M, apakah 14 (atau tidak ditulis), 12, 8, atau 6.
      • TIME
      Tipe data waktu. Jangkauannya adalah '-838:59:59' hingga '838:59:59'. MySQL menampilkan TIME dalam format 'HH:MM:SS'.
      • YEAR[(2|4)]
      Angka tahun, dalam format 2- atau 4-digit (default adalah 4-digit). Nilai yang mungkin adalah 1901 hingga 2155, 0000 pada format 4-digit, dan 1970-2069 pada format 2-digit (70-69).
      • CHAR(M) [BINARY]
      String yang memiliki lebar tetap. Nilai M adalah dari 1 hingga 255 karakter. Jika ada sisa, maka sisa tersebut diisi dengan spasi (misalnya nilai M adalah 10, tapi data yang disimpan hanya memiliki 7 karakter, maka 3 karakter sisanya diisi dengan spasi). Spasi ini akan dihilangkan apabila data dipanggil. Nilai dari CHAR akan disortir dan diperbandingkan secara case-insensitive menurut default character set yang tersedia, kecuali bila atribut BINARY disertakan.
      • VARCHAR(M) [BINARY]
      String dengan lebar bervariasi. Nilai M adalah dari 1 hingga 255 karakter. Jika nilai M adalah 10 sedangkan   data yang disimpan hanya terdiri dari 5 karakter, maka lebar data tersebut hanya 5 karakter saja, tidak ada tambahan spasi.
      • TINYBLOB dan TINYTEXT
      Sebuah BLOB (semacam catatan) atau TEXT dengan lebar maksimum 255 (2^8 - 1) karakter.
      • BLOB dan TEXT
      Sebuah BLOB atau TEXT dengan lebar maksimum 65535 (2^16 - 1) karakter.
      • MEDIUMBLOB dan MEDIUMTEXT
      Sebuah BLOB atau TEXT dengan lebar maksimum 16777215 (2^24 - 1) karakter.
      • LONGBLOB dan LONGTEXT
      Sebuah BLOB atau TEXT dengan lebar maksimum 4294967295 (2^32 - 1) karakter.
      • ENUM('value1','value2',...)
      Sebuah enumerasi, yaitu objek string yang hanya dapat memiliki sebuah nilai, dipilih dari daftar nilai 'value1', 'value2', ..., NULL atau nilai special "" error. Sebuah ENUM maksimum dapat memiliki 65535 jenis nilai.
      • SET('value1','value2',...)
      Sebuah set, yaitu objek string yang dapat memiliki 0 nilai atau lebih, yang harus dipilih dari daftar nilai 'value1', 'value2', .... Sebuah SET maksimum dapat memiliki 64 anggota.
       Sekian Tutorial Mysql dari saya, semoga bermanfaat bagi kita semua.
      Thanks ...!!!