![]() |
| ||||||||||
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| PHP The most widely used server-side programming language for web applications. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| |||
| Alright, I wanted to ask here because the internet help I've googled up is geared towards the more knowledgeable. I need to set up a page with PHP and PostreSQL and I have no money with which to purchase hosting, hence why I am here. I already have the Source Code I need for the page (organizing a large game in my area akin to this http://www.webfeatsdesign.com/hvz/). And now that it's come time to implement it I'm absolutely lost as to what to do now. I have almost zero html or php knowledge, but I don't consider myself a dumb man and I'm a pretty fast learner. Can you help me out here? So far I have FlashFXP and am waiting on the submit screen at Profuse Host. |
| |||
| Sounds like an interesting project, I am very interested in stuff like that. I have some minor experiences in php as well as in html (building a webpage is no problem). About your problem what do you mean by Quote:
Just want to build a homepage ? here we go: -request a web hosting account (I recommend Free Web Hosting, Free Domain Hosting, Free Web Hosting with No Ads, Post For Host - Home) -connect via FTP (download an FTP software connect to the server ftp.*****.profusehost.net enter your username and password) -there is a folder called public_html -inside this folder place your php and html files. -(for cgi scripts if required just contact me again) first try something simple like: index.html Code: <html> <head> <title>Hey</title> </head> <body> Hello World </body> </html> That is all for further questions, just reply ! I am very interested in your results, the flash side looks nice. Regrades Snoop1990 |
| |||
| You want to convert this html tag to php file? Code: <html> <head> <title>Hey</title> </head> <body> Hello World </body> </html> PHP Code: |