Status
Not open for further replies.

gursimran_2006

Broken In
I want to design my own website in PHP. i need only free services. tell me any freeware software to make PHP webpages. also tell my free PHP hosing site with no ads or banners.
 
Last edited:

freakitude

Journeyman
Hi,
PHP is not a database. Its server side programming language. Thre is no software to make php webpages.

You can use readymade php scripts or you can use php based web applications. What kinda website you want to make?

You can apply for free php hosting at frihost.com . You have to make some posts on their forums before appying. Also you have to stay active on their forums if they approve your hosting request.
 

mediator

Technomancer
Yea PHP is not a database. U wanna implement database website it seems. PHP+Mysql is ur answer!
There are a lotta websites which gives u php+mysql access.
Take a look here -> *www.oinko.net/freephp/
 

tuxfan

Technomancer
Do you know how PHP works? If not, then understand that first. Let me give you sone small explanation ;)

1. A server receives request for a .php page
2. It hands it over to the PHP interpreter which goes thru the code
3. It gives the output of the code in HTML
4. The HTML output is sent to the browser.

Why use PHP? Here's an (silly) example. If you want to display numbers from 1 to 100 one below the other on HTML page, then without PHP you will write it like this
Code:
1<br>
2<br>
3<br>
...
...
100<br>
With PHP you will write it like this
Code:
for ($ctr = 1; $ctr <= 100; $ctr++)
{
  print($ctr . "<br>");
}
So three lines in place of 100 and if it changes to 1000, just one more 0 in the counter will do the job, whereas in HTML you will have to write 900 more lines. Additionally, there are certain things which can't be done in HTML properly e.g. dynamic pages. For example, have a look at *www.deitydarshan.com. Just ignore the pathetic looks as it will be changed within 10 days. I have coded this site in PHP. I made a few pages and those same pages keep displaying the images day after day and even previous days/years. This site is running since July 2005 with the same set of PHP pages :D

For testing and writing PHP pages, you need to install Apache and PHP in your machine. You can either install them separately and connect them. Or directly download and install XAMPP or EasyPHP. These two softwares will configure everything in your machine automatically. ;)

Also download some tutorials from the net for PHP. *w3schools.com will give you some basics. Search for e-books on the net. There are many legal (and illegal) e-books available for download. You can also download PHP Manual. These days, I refer to this manual the most then any other book :)
 

mediator

Technomancer
deitydarshan.com ...... nice site bro! Put the details of 10 Vishnu avatars,all famous GITA slokas and some recipes of aurveda (if u can) too. :)
 

tuxfan

Technomancer
mediator said:
deitydarshan.com ...... nice site bro! Put the details of 10 Vishnu avatars,all famous GITA slokas and some recipes of aurveda (if u can) too.

Watch it on Diwali. We are working at full speed and intent to re-launch the site with new looks and new contents. :) Hope we can finish it before Diwali;)
 
Status
Not open for further replies.
Top Bottom