Best Free HTML Editor for Download
Dec 23rd
One thing you will need when making simple web pages of your own, also known as “mini-sites”, and for other very simple tasks, is a web page editor.
While you can do it in Microsoft Word, Wordpad and other text editors, many folks choose to start out by download the free program called Kompozer, formerly known as NVU. This type of html editor is known as WYSIWYG ( or What You See Is What You Get).
It saves a whole lot of work and study in your biginning stages of learning html coding. You need to learn this before you move on to the more often used coding called xhtml. Don’t worry, it will make alot more sense as you gain knowledge and experience.
The Graphical User Interface of Kompozer makes it very easy to use, but it is a powerful program. There are tutorials on how to use it online as well.
One way you will use Kompozer in a very simple fashion is to change the name on sales pages so that YOUR name appears on them. You can do other simple tasks like changing the price, adding a “form” from your autoresponder so you capture folks information such as their name and email, and more. These are all basic functions that are simple to do, and you should make sure you learn to do them as we progress.
So go download what could be the best freebie ever, Kompozer, and have a blast!
posted from SonyEricsson G502 handset.
Display Images from mySQL Binary Data
Nov 10th
First of all we must connect to our database
<?php
$username = "";
$password = "";
$host = "localhost";
$database = "";
Storing Images/Binary Files to mySQL in PHP
Nov 10th
It is possible for us to store/save our images (binary files) into a mySQL database in PHP. In this article, we will discuss about “how to store images, audio, or another binary files into mySQL database with PHP script”. But, before we continue to the further step, you might want to consider some reason of why we should and why we shouldn’t store binary files in a database:
Reasons to store your images (binary files) in a database:
- Storing in a database allows better security for your files and images.
- Eliminates messy directory and file structures (this is especially true when users are allow to contribute files).
- Files/Images can be stored directly linking to user or advertiser information. Read the rest of this entry »