on December 30th, 2009 by Macovei Cristi in HTML - PHP
In this tutorial you’ll learn how to send emails using php’s mail function. You’ll learn how to send emails using HTML tags.
To remove the HTML tags from the email/newsletter, you must remove the MIME-VERSION and Content-type from headers. If you want to add multiple receivers, simply add more emails separated by commas(,) .
$email = 'your@email.address'; //The receiver of the email
$subject = 'The email title'; // here comes the email title
$headers = "MIME-Version: 1.0\r\n";...Read More!
Comments: 0
Tags: html email, php email, send emails using html, send emails with php, send html emails
on December 26th, 2009 by Macovei Cristi in HTML
In this tutorial you’ll learn the most used html codes. This is a great resource for the beginners, with these tags you can create your own HTML page.
1. Align codes
To align one text to center , you will use the
text
or
text
To align one text to the left you’ll use the next html code :
text
and if you want to right-align the text you will use the next code:
text
2. Links codes
The html code for adding text links is :
text to be displayed
To add one pop-up links, you will...Read More!
Comments: 1
Tags: HTML, html codes, html tags, most used html codes, most used html tags
on December 26th, 2009 by Macovei Cristi in MySQL
In this tutorial you’ll learn the basic mysql commands .
I’ll guess you already have one mysql database installed on your webhost,so we’ll skip this phase.If you don’t, go to cpanel -> mysql databases and create one.
1. CREATE TABLE
CREATE TABLE tablename (
column1 type1 details1,
column2 type2 details2,
column3 type3 details3,
..............................
)
Column1,column2,column3……….. are the column names
The column type can be :
INT - that column...Read More!
Comments: 0
Tags: create table, delete table, drop database, mysql basic commands, mysql basic queries, mysql queries, mysql query, update table