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

Thursday, 26 September 2013

Download WinRAR Free

WinRAR is an archiving utility that completely supports RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives. It consistently makes smaller archives than the competition, saving disk space and transmission costs.
WinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface. WinRAR is easier to use than many other archivers with the inclusion of a special "Wizard" mode which allows instant access to the basic archiving functions through a simple question and answer procedure.
WinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits. It supports files and archives up to 8,589 billion gigabytes in size. It also offers the ability to create selfextracting and multivolume archives. With recovery record and recovery volumes, you can reconstruct even physically damaged archives.

Click here for download

Source : www.filehippo.com

Wednesday, 25 September 2013

Download CCleaner

CCleaner is a freeware system optimization, privacy and cleaning tool. It removes unused files from your system - allowing Windows to run faster and freeing up valuable hard disk space. It also cleans traces of your online activities such as your Internet history. Additionally it contains a fully featured registry cleaner. But the best part is that it's fast (normally taking less than a second to run) and contains NO Spyware or Adware! :)
Cleans the following:
  • Internet Explorer
  • Firefox
  • Google Chrome
  • Opera
  • Safari
  • Windows - Recycle Bin, Recent Documents, Temporary files and Log files.
  • Registry cleaner
  • Third-party applications
  • 100% Spyware FREE

Click here for download

Source : www.filehippo.com

Tuesday, 24 September 2013

WEB dan pemrograman HTML Dasar


HTML DASAR

PENGENALAN WORD WIDE WEB(WWW)

Internet adalah sebuah solusi jaringan yang dapat menghubungkan beberapa jaringan lokal yang ada pada suatu daerah, kota, atau bahkan pada sebuah negara. Dengan adanya internet kita dapat menghubungkan beberapa jaringan lokal yang ada pada setiap tempat. Tidak hanya itu juga dengan adanya fasilitas internet setiap orang dapat melakukan kegiatan apa saja seperti mengirim Email, mencari data, bermain game, akses bank, atau bahkan melakukan pembelanjaan online antar negara.
Untuk dapat menghubungkan beberapa komputer sehingga menjadi sebuah kelompok jaringan, kita membutuhkan suatu media penghubung yang bernama TCP/IP, yaitu sebuah protokol yang mengidentifikasi sebuah komputeryang terhubung di dalam jaringan. TCP/IP memiliki tekhnik mengidentifikasi dengan menggunakan penomoran yang dinamakan nomor IP / IP address (Internet Protocol Address). Dengan menggunkan nomor ini sebuah komputer dapat terhubung dengan komputer lain dalam sebuah jaringan atau dalam jaringan global yang disebut internet.

MENGENAL SCRIPT HTML DASAR

HTML adalah kependekan dari (Hyper Text Markup Language), merupakan sebuah bahasa Scripting yang berguna untuk menuliskan halaman WEB. Pada halaman WEB, HTML dijadikan bahasa script dasar yang berjalan bersama berbagai bahasa scripting pemrograman lainnya.
Semua Tag-tag HTML bersifat dinamis, artinya kode HTML tidak dapat dijadika file Executable program. Hal ini disebabkan HTML hanyalah sebuah bahasa scripting yang dapat berjalan apabila dijalankan di dalam browser (pengakses WEB), browser-browser yang mendukung HTML antara lain adalah Internet Explorer, Opera, Mozilla dan lain-lain. Jadi pada saat ingin membuka halaman yang berasal dari HTML Anda dapat melihat bentuk pengkodeannya dengan cara mengklik menu View lalu pilih Source maka di sana akan ditampilkan semua Tag beserta isi dari halaman web tersebut.
Semua bahasa Scripting yang berjalan di bawah WEB dapat didukung oleh HTML, biasanya bahasa-bahasa tersebut melakukan Embedded Script pada tag-tag HTML.

SINTAKS DASAR HTML

Sebagai sebuah elemen dasar di dalam pemrograman WEB, HTML memiliki beberapa aturan-aturan dalam penulisannya yang kesemuanya itu harus kita penuhi dalam penulisannya. Sehingga dengan adanya aturan-aturan tersebut, sebagai seorang Programmer Web kita harus konsistn dalam hal penulisan semua tag-tag HTML.
HTML memiliki beberapa sintaks dasar yang hampir mirip dengan semua pemrograman baik yang berbasis Web maupun visual. Kemiripan itu adalah bahwa semua struktur pemrograman harus ada sintaks yang menyatakan program itu dimulai dan akhir sintaks. Sebagai contoh dalam pemrograman PHP kita mengenal tanda . Selain itu kita juga dapat mengambil contoh dalam pemrograman pascal yang mendeklarasikan Begin sebagai pernyataan awal program dan diakhiri dengan end; .
Dokumen HTML selalu didahului dengan sebuah tag yang menandakan bahwa dokumen tersebut adalah dokumen HTML. Tag tersebut adalah dengan sintaks penulisannya adalah :
<html>
 . .isi web. . 
<html>

Dengan demikian semua isi yang ada di dalam tag HTML akan dianggap sebagai dokumen HTML.

Monday, 23 September 2013

How to Use Adobe After Effects

Adobe After Effects is a software program that allows its users to create animation and other special effects for graphic-related projects. Graphic designers use it to provide their projects with layer-based animation, audio clips and still images. Part of the Adobe family of software, After Effects projects are compatible with other Adobe software, helping to provide versatility to designers. Here are a few tips about how to use Adobe After Effects in your projects.


Steps

  1. 1
    Start a new project. As you open After Effects, the option to start a new project is present.


    • Right-click in the project window and select "New Composition," or hold down "Ctrl + N" on your keyboard. From this point, you may also select the default size of the project and the projected video size.


    • You can import files by right-clicking in the project window and choosing "Import," or by holding down "Ctrl + I" on your keyboard. You may import files as a composition file if you wish to keep all layers during the transition.


  2. 2
    Now that you've imported your files, drag and drop them into the Timeline window. To adjust which layer appears in your Composition window, drag them up and down in your Timeline window. Each layer will have a grey box around it. To adjust the size, drag the corners. To adjust the width and height drag the sides. To adjust the length of your clip, drag the end or the beginning of your layer and release at the desired point.


  3. 3
    Animate key frames by clicking on the stopwatch beside each file. You will select a starting- and ending-point for each file. After Effects automatically fills in the animation clip between the stopwatch selections.


  4. 4
    Preview your project. Select "Windows." From here, click on "Time Controls." A preview pane will pop up where you can select "Play" to see a rough draft of your project. If you wish to see a more finished version, click on "Ram Render Play." If your project is especially long or requires a large amount of memory, adjust the resolution before you preview it. After clicking to play it, the video will run continually until you click on the screen to stop it.


  5. 5
    Jazz up your project with animations and effects. Click on "Window" and "Effects and Presets." You will see a list of various animations and effects that are available for application to your project. Simply drag and drop the effect or animation selection onto the object to which you'd like to apply it. You should see the change immediately. Samples of the effects are 3D, color correction and various camera views. Transitions are also included, such as wipe, fade and checkerboard. You may remove selections by dragging them off your projects.

    www.wikihow.com

Sunday, 22 September 2013

How to Write ASP Scripts

ASP or active server pages, is used to make websites that are both dynamic and static. Here, you will learn how to write a simple hello world script.


Steps

  1. 1
    Configure IIS.


  2. 2
    Open Notepad and type this<% response.write("Hello World!") %>


  3. 3
    Run the Notepad file from a browser.



    source : www.wikihow.com

Saturday, 21 September 2013

How to Make a Web Page Using Dreamweaver

Here's how to get started in making a website in Adobe Dreamweaver.


Steps

  1. 1
    Create a folder in the hard drive (not in Dreamweaver) and name it whatever you want. This is your root folder.


  2. 2
    Inside this folder create 4 sub-folders and name them: Images, Flash, Pages, and Other.


  3. 3
    Go into Dreamweaver and click on HTML. Save this page into your root folder as Home Page.


  4. 4
    Get Started.


  5. 5
    Dreamweaver is a little bit screwy so to put images, buttons, etc where you want them you have to add in tables. Go to insert, new table. You can set it to as many cubes as you want. It's a little tricky to get it where you want but a little playing with it works.


  6. 6
    If you want to, you can insert buttons by going to insert, form, button. Once you get it, you can right click on it and look for the page you want to connect it to or type in the url of the site.


  7. 7
    You can also use flash text and you can add in pictures.


  8. 8
    When adding a picture, do not copy/paste it. Go to insert, image and then search for the pic you want. Again, Dreamweaver is a little screwy.


  9. 9
    To change the background color and font go to modify, page properties, and it's self explanatory from there.


  10. 10
    That should get you on the right track!



    Source : www.wikihow.com