Post Free Classifieds     Dev Vani     Twitter     Watch TV

Content

Sixth Sense {Blog}, Spirituality, Hinduism, Free Downloads, SEO, Web dev, Learning PHP, Indian Cooking, News, Earthquake prediction

Tagged: Learn PHP

The benefit of choosing PHP as a web platform is its utility in dynamic and database driven web applications. It is fairly easy in PHP script to make a connection to MySQL database.

<?php
$connection = mysql_connect(”DataBase-Host”, “DataBase-User”,”Password-of-databse”)
OR die(’Error connecting to mysql’); // means do not execute code any further.
$dbname = ‘databasename’;
mysql_select_db($dbname);
?>

There is one more better [...]

 » Read the rest

Ok you wanna learn PHP. Who knows you might be running next big thing. What ever! lets start first lesson. Your first code in PHP scripting language. I would advise you to learn a bit of HTML before you jump into PHP coding thing.
Like HTML, PHP also lives in tags known as open and close [...]

 » Read the rest