I think one of the best free hosting site will be awardspace. Awardspace gives you 200MB free space with mailing accounts where you can receive mails only but you cannot send mails.The default front page will be index.php.They allow to use FTP accounts that you can upload your with cute ftp.In this you are not able to edit php.ini fi...
Sunday, September 12, 2010
Free hosting in php
Author: Unknown
| Posted at: 7:03 AM |
Filed Under:
Free hosting in php
|
0
comments

Continue Reading...
Saturday, September 11, 2010
Creating a database in mysql
Author: Unknown
| Posted at: 9:11 AM |
Filed Under:
Creating a database in mysql,
Mysql
|
0
comments

How to connect php to SQL database
Author: Unknown
| Posted at: 9:09 AM |
Filed Under:
How to connect to MS SQL Server database,
tips
|
0
comments

<?php
$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples";
//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
or die("Couldn't connect to SQL Server on $myServer");
//select a database to work with
$selected = mssql_select_db($myDB, $dbhandle)
or die("Couldn't open database $myDB");
//declare the SQL statement that will query the database
$query = "SELECT id, name, year FROM cars WHERE name='BMW'";...
Friday, September 10, 2010
Synatx for PHP
Author: Unknown
| Posted at: 8:16 AM |
Filed Under:
Synatx for PHP,
Tutorial
|
0
comments

We start php with symbol <? and end with with ?>.
Let us look how to write a simple php to print your name
first you need to write html
<html>
<body>
<?
echo "This is to show how to print";
?>
</body>
</html>
here echo is the function to print to screen in php.save this code as leason1.php and run on your ser...
PHP basics
Author: Unknown
| Posted at: 8:10 AM |
Filed Under:
How to install php,
PHP basics,
Tutorial
|
0
comments

Let us study PHP, PHP is a very simple language.It is a powerful language for developing websites. PHP is called the Hypertxt preprocessor.You just need some basic knowledge about HTML language to study PHP. Let us look what all are the tools you need to run php as localhost.
1 .Server (You need an Apache server or any sever to run php,click here to download XAMP)
2. Notepad or Dreamwever
PHP is an open source softwarePHP is free to download and use.PHP file is saved as .php and it can be placed...
Subscribe to:
Posts (Atom)