Sunday, 29 September 2013

Free Download Notepad++

Notepad++ is a free source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL Licence.
Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.
  • Syntax Highlighting and Syntax Folding
  • WYSIWYG
  • User Defined Syntax Highlighting
  • Auto-completion
  • Multi-Document
  • Multi-View
  • Regular Expression Search/Replace supported
  • Full Drag 'N' Drop supported
  • Dynamic position of Views
  • File Status Auto-detection
  • Zoom in and zoom out
  • Multi-Language environment supported
  • Bookmark
  • Brace and Indent guideline Highlighting
  • Macro recording and playback

Click here for download

Source : www.filehippo.com

Free Download Nero

Nero Multimedia Suite comprises 3 programs, Nero Burning ROM, BackItUp and Vision. It’s loaded with advanced video editing features, media organizer and player, superior burning software, reliable backup technology, and special multimedia tools to enhance your music, photos and videos.
Features:
  • Burn to Disc or Share to Social Communities, Slide-shows and Movies with Unique Premium Menus
  • Arrange Photos and Videos for High Quality Slide-shows and Movies
  • Multi-track Video Editing with Complete Keyframe Handling Option
  • Quick, Easy, and Secure Disc Burning
  • Edit and Enhance Photos with Just One Click
  • Fully Controllable, Effective Backup in a Few Easy Steps
Click here for download

Source : www.filehippo.com

Free Download Flashplayer

Adobe Flash Player is the high performance, lightweight, highly expressive client runtime that delivers powerful and consistent user experiences across major operating systems, browsers, mobile phones and devices.
Installed on over 750 million Internet-connected desktops and mobile devices, Flash Player enables organizations and individuals to build and deliver great digital experiences to their end users.
  • Immersive experiences with Flash video, content and applications with full-screen mode.
  • Low-bandwidth, high-quality video with advanced compression technology.
  • High-fidelity text using the advanced text rendering engine.
  • Real-time dynamic effects with filters for Blur, DropShadow, Glow, Bevel, Gradient Glow, Gradient Bevel, Displacement Map, Convolution, and Color Matrix.
  • Innovative media compositions with 8-bit video alpha channels.
  • Blend modes, radial gradient, and stroke enhancements.
  • Additional image formats: GIF, Progressive JPEG, and PNG.
Click here for download


source : www.filehippo.com

How to Connect to MySQL Using PHP

If you already know some of the basics of writing PHP scripts, you may be ready to learn about a set of built-in PHP functions that allow you to connect to and manipulate a MySQL database. If you do not already have a MySQL server (Most web hosts with PHP do), I suggest either downloading and installing WampServer on your web server, or following this tutorial. It is also recommended that you understand basic concepts of SQL. In this tutorial we will learn how to connect to a MySQL database, select a database, query a table, and "fetch" and array from that data.

Steps

Connect to a Server

  1. 1
    Create a new PHP file on your web server, and open it in your favorite text editor.
  1. 2
    Start your file by typing the open and close PHP tags with some space in between to work with.
    <?php
     
     
     
    ?>
  1. 3
    Type this on a new line.
    $con = mysql_connect("localhost","root","");
    
    • This line of code creates the foundation for the communication with the MySQL server. The function "mysql_connect" takes a minimum of 3 string arguments. The first is the IP address or domain name of your server; you should change this from localhost to the address of your MySQL server. The second argument is the MySQL user that we will authenticate, and the third argument is the password for our MySQL user (in this case I left the password blank).
    • The output of "mysql_connect" is a resource datatype, and in the code above we assigned it to a variable ($con) so we could use it later. For more information on mysql_connect(), visit the PHP documentation.

Select a Database

  1. 1
    Type this on a new line.
    mysql_select_db("test", $con) or die(mysql_error());
    
    • This line is fairly simple. Before your can run any queries on a specific database, you must select which database. In PHP to do this we use the "mysql_select_db" function, which requires 1 argument. The first argument in the code is required, it is the name of the database to connect to. The second argument I used is not required but good practice; it defines which server connection to use to select the database.

Query a Table

  1. 1
    Type this on a new line.
    mysql_query("CREATE TABLE `php tutorial` (`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` VARCHAR( 255 ) NOT NULL) ENGINE = MYISAM", $con) or die(mysql_error());
    
    • The function mysql_query works in two ways. "For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset, mysql_query() returns a resource on success, or FALSE on error.
    • For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error." (PHP documentation).
    • These lines of code do two things. First they call "mysql_query," which will return true or false based on the success of the query. If the output of mysql_query is false the script will die and run the "mysql_error" function (which simply returns the previous MySQL error).
    • The mysql_query function only requires one argument, but like the mysql_select_db function, it is good practice to include a second.
      • The first argument is a string: a single MySQL query (multiple queries not allowed). The query above creates a new table called "php tutorial".
      • The second argument is the connection resource we are using (in our case $con).
  2. 2
    Type this on a new line.
    mysql_query("INSERT INTO `php tutorial` (`name`) VALUES ('chuck')", $con) or die(mysql_error());
     
    $result = mysql_query("SELECT * FROM `php tutorial`", $con);
    if(!$result) {
            die(mysql_error());
    } else {
            while($row = mysql_fetch_array($result)) {
                    echo row['name'];
            }
    }
    
    • The first line of code is similar to the last step's code. It is in there to give of some data to select. Below, see we are setting the output of mysql_query to a variable called $result.
    • Also notice how the code does not use "or die(" instead it uses the if control statement. This can save you grief when you start getting into error handling beyond simply killing the script. You don't have to worry about it too much now, and you can use "or die" on MySQL queryies that return a result set if you want
    • After the else statement we have a while statement. This part of the code can be confusing so bear with me. mysql_fetch_array will return an array of data containing a single row of the result, labeled by column; however, the next time mysql_fetch_array is run it will return an array of the next row in the result set.
      • The while statement will keep iterating through all the rows (assigning them as arrays to $row), until mysql_fetch_array reaches the end of the result set, then it will return false and the while statement will close. Confusing yes. But this method works well.
  3. 3
    Take some time to play around with these concepts. These functions allow you to do so much more with PHP. I would suggest taking a look at this wikiHow page: How to Create a Basic Login Script in PHP. I would also suggest making your own project like a simple browser turn based rpg to get the hang of working with a database.
Source : www.wikihow.com

Format Halaman dan Paragraf HTML

Untitled Document Beberapa Atribut yang digunakan di dalam Tag Body adalah :
Atribut Keterangan
bgcolor Untuk menentukan warna background
background Membuat Background bergambar
text Warna text pada seluruh halaman
link Warna Hyperlink
vlink Warna link yang telah dikunjungi
alink Warna link yang aktif
leftmargin Mengatur jarak margin kiri halaman
topmargin Mengatur jarak margin atas halaman
marginwidth Mengatur jarak lebar margin halaman
marginheight Mengatur jarak tinggi margin halaman

Latar belakang atau Background merupakan sebuah elemen yang sangat diperlukan dalam membedakan halaman web. Selain itu juga pewarnaan pada latar belakang sangat diperlukan, karena tidak semua orang pasti menyenangi dengan latar belakang standar yang bersifat statis, dalam hal ini adalah warna putih sebagai warna standarnya.

Saturday, 28 September 2013

Penjelasan Sintaks

Untitled Document
Ada beberapa bentuk kode yang wajib ada dalam menuliskan Tag HTML, Tag- Tag itu antara lain adalah :

  • <html> </html> : Di dalam Tag HTML, hal yang harus ada adalah kode <html>. Karena kode ini akan menyatakan jeni dokumen yang kita ketikan. Tag <html> wajib ada dan kemudian harus ditutup dengan kode <html> .

  • <head> </head> : Kode <head> jika diartikan berarti kepala, di dalam Web pun kode <head> juga diartikan sebagai kepala dalam program. kode <head> yang kemudian yang kemudian diakhiri dengan kode </head> adalah merupakan kode yang diletakkan setelah pembukaan kode <html>.

  • <title </title> : Kode ini akan selalu diletakkan di dalam kode <head>, kode ini dimaksudkan untuk mendeklarasikan judul yang akan ditampilkan dalam browser web yang dibuat.

  • <body> </body> : merupakan kode yang berguna untuk meletakkan semua isi web yang akan kita buat. Kode ini diawali dengan tanda <body> dan diakhiri dengan </body>.



Di dalam penulisannya HTML tidak membedakan antara penggunaan huruf besar dan kecil, misalnya pada saat Anda mengetikkan <HTML> maka akan sama bila Anda menggunakan kode <Html> ataupun <html>. Jadi pada HTML tidak mengenal istilah <b>Case Sensitive</b> seperti yang ada pada sistem operasi LINUX maupun UNIX.

Friday, 27 September 2013

Free Download Avira

Avira AntiVir Personal - FREE Antivirus is a reliable free antivirus solution, that constantly and rapidly scans your computer for malicious programs such as viruses, Trojans, backdoor programs, hoaxes, worms, dialers etc. Monitors every action executed by the user or the operating system and reacts promptly when a malicious program is detected.
  • Detects and removes more than 150,000 viruses
  • Always among the winners of comparison test featured in computer journals
  • The resident Virus Guard serves to monitor file movements automatically, e.g. downloading of data from the internet
  • Scanning and repair of macro viruses
  • Protection against previously unknown macro viruses
  • Protection against trojans, worms, backdoors, jokes and other harmful programs
  • AntiVir protection against viruses, worms and Trojans
  • AntiDialer protection against expensive dialers
  • AntiRootkit protection against hidden rootkits
  • AntiPhishing protection against phishing
  • AntiSpyware protection against spyware and adware
  • NetbookSupport for laptops with low resolution
  • QuickRemoval eliminates viruses at the push of a button
  • Easy operation
  • Internet-Update Wizard for easy updating
  • Protection against previously unknown boot record viruses and master boot record viruses
Click here for download

Source : www.filehippo.com