itssami
Feb 11 2006, 11:04 PM
| | Hey.I have made a simple website http://pakdir.com this is in html.But its very difficult to update the html pages.I want to convert it to php site.But i dont know about php language ... is there any "PHP website builder" ?? is there anyway to build a php website without knowledge of php , with the help of some program ? for example there is a frontpage for html etc.Please tell me any solution? |
Reply
jlhaslip
Feb 12 2006, 03:22 AM
Consider using a Content Management System like Joomla or php-nuke. Both are available in the fantastico in your cpanel for the trap17 accounts and both are php-based. It should simplify your updates and require less work to maintain the site's content. All the Templating is done. Review the Tutorials and maybe check out the features at their Support Forums. Look for the addresses in the Fantastico portion of the cpanel by choosing the CMS and pressing 'go'. The links are there to click on. Most of the better CMS software allows you to skin the CMS for presentation, add dynamic content, etc.
Reply
Ao)K-General
Feb 12 2006, 10:19 AM
It would be strange to see a program change html into php and vice versa. I don't think one exists. That would be a lot of work to make one. You would have to know more php than many web programmers do. Than be able to code that and have it change one thing to another. It wouldn't be easy and would take a lot of time.
Reply
sm00nie
Feb 12 2006, 10:41 AM
The thing here is that php is programming code, and html is mainly used to create a layout (without including scripts). You can mix match both in php files (but not in html files), but making things easier with a php site builder will not be easy if you do not know php at all. Using a Content Management System as jlhaslip has indicated is the best way to go. I suppose the biggest issue you'll have with a CMS would be to manipulate it to match your layout, but with a bit of time that's not even an issue. In your free time I'd recommend learning php (http://www.w3schools.com/php/default.asp -- intro php), you'll be able to create some pretty cool features for your users and make it easier to get things just the way you like them.
Reply
Plenoptic
Feb 12 2006, 11:20 AM
Like sm00nie said I would reccomend going to w3schools.com and at least start to learn the basics. You can't really have a site that is just php because that isn't what php was made for. They are two different types of scripts. Another content management system would be CuteNews. It is a lot easier to update your content because all you have to do is type it in and submit. It isn't hard to set up either. You can find it here: http://cutephp.com/cutenews/
Reply
no9t9
Feb 12 2006, 04:46 PM
you can't "convert' HTML to PHP. it is impossible because it is not the same type. PHP is NOT used by your browser. Your browser can only read HTML (for simplicity sake). On the webserver, an HTML page is sent directly to internet explorer without doing anthing to it (no parsing). For PHP pages, the webserver parses it. This means it looks through your page and executes all the PHP commands. The result is then sent to your internet explorer. When you load a PHP page from internet explorer you are actually not getting a PHP page, you are getting an HTML page that the webserver has generated. PHP is SERVER SIDE SCRIPTING. Asking to convert HTML to PHP is like saying you want to convert a word document to JAVA. It is not possible.
Reply
Dragonfly
Feb 12 2006, 05:01 PM
Like other members have suggested I also suggest you to use Content Management systems like Mambo, Joomla, Xoops, PHP-Nuke, e107 and others. If you want your site to work easily for you which will be dynamic it is better to use those, it will take much time until you can code your own site using PHP even if you learn. Besides, even those who are expert is PHP also don't waste their time coding their own sites rather they use CMS and alter or hack the codes according to their needs which will not take much time. And also if you learn PHP the best way to experiment is to start testing those already available free CMS and play around with the codes.
Reply
vujsa
Feb 13 2006, 05:26 AM
Actually the idea of converting your HTML file to PHP files is not a ridiculas as everyone has suggested. If fact I think that most of the reasons not to do so have been pretty short sighted. There are a number of reasons to convert your HTML files to PHP. The biggest reason is to prepare the file to use PHP scripting. For example, if you wanted to add a PHP include to your page, the file would first need to be converted to PHP. It doesn't matter if the PHP file actually contains any php coding or not. All you really need to do is change all of your files extentions from .html to .php and edit any internal links form .html to .php! Your biggest problem will be a large number of dead links since your HTML files will no longer exist. As a result if you url is listed in search engines and other sites, the links will no longer work. Here is a solution for that problem: http://www.astahost.com/redirecting-all-ht...ite-t10490.html====================================== The benefit of using a PHP include in your page is that you can include the contents of a file where ever you decide on your page. (basically where ever you place the include) The most common use of this technique by new PHP users is a site map or menu. You can write a single file that contains all of your menu information and insert that files contents into each of your web pages. Then if you want to edit your menu, you need only to edit the one file one time. For more information, see this post: http://www.astahost.com/cms101-content-man...sign-t7778.htmlYou might be able to get someone to write a script to convert your files and clean the links up inside the files. I would help but I'll be out of town for about a month. Good Luck.  vujsa
Reply
Lyon2
Apr 25 2006, 09:09 AM
Here's some programs that will convert html to php, but they aren't free: HTML To PHP Converter 4 http://visorsoft.com/htmltophp.phpArigola html to php converter http://www.arigola.com/HTML to PHP or ASP http://www.websitedatabases.com/html-to-php.htmlArigola is very good, and to tell you the trueth, i think i have a free version from the past of this program, but i'm not sure, i will post it here if i find it when i have time.
Reply
Inspiron
Apr 25 2006, 10:07 AM
It isn't quite logical to convert your pure HTML site into a PHP page because HTML codes are basically client-side codes that display everything as text. PHP is processed on the server and hence the codes are not downloaded into the client's computer. The client only gets the processed output of the PHP program, which is then converted to plain HTML text for the client, or visitor to view. There's quite a number of PHP builder, free and commercial versions. Both you will need at least basic PHP knowledge to use them. Otherwise you will not know what is going on. It's unlike Frontpage, Dreamweaver or anyother HTML builder as they are pretty straight forward, making what you see as what you get. HTML simply displays everything in it. PHP builder is not making as what you see with what you get. It's more towards programming as what you want to do upon certain events. Hence people who doesn't know basic PHP will likely don't know what is going on in the PHP builder software. You may like to try the following PHP builders listed in this site http://www.php-editors.com/review/An alternative to building PHP based website is to use CMS (Content Management Systems) like what many suggested. These CMS are built with PHP which meant to display whatever you've place in it, making it works like simple HTML editing, what you see is what you get type. You can check out this site to download a free CMS to build and manage your site for free. http://www.hotscripts.com/PHP/Scripts_and_...ment/index.html
Reply
Latest Entries
iGuest
Apr 22 2008, 01:36 AM
Replying to no9t9No9t9 "Right to Internet Explorer", that says it all, know what you are talking about before you open your piehole YES it can be converted to a self executing PHP code, there are several convertors available online to convert HTML into PHP scripts, http://tools.Devshed.Com/webmaster-tools/html2php/ for example That however would not solve your problem, what you want is a CMS like the other suggested, so you only have to post and update the actual content, not the pages ect. -reply by Outlawsys
Reply
michaelper22
May 8 2006, 01:41 AM
Technically, if you want to convert the files of your site to PHP, just rename them with a .php extention. Making your site CMS-driven, however, is another story. Try a CMS like Mambo ( http://www.mamboserver.com) / Joomla ( http://www.joomla.org/), or CMS Made Simple (one of my newly discovered secrets, http://www.cmsmadesimple.org). All of these work off of a template, giving all the pages in your site a common appearance (unless you specify a different template for different parts of your site, possible in all of the aforementioned CMSs).
Reply
Recent Queries:--
php convertor - 0.81 hr back. (1)
-
php code to read certain portion of html file - 50.45 hr back. (1)
-
"from html to php" converte online - 74.76 hr back. (1)
-
learn cutephp - 97.89 hr back. (1)
-
how do i make my php or asp page my home.html - 163.00 hr back. (1)
Similar Topics
Keywords : html, php, convertor
- Css Problem On Website
I've uploaded the html/css files but the css isn't working/ (8)
Www Vs. Public_html [resolved]
(3) I didn't know where to post this..... this category seemed about as good a fit as there was. on
most webservers (my trap 17 one included), there is a public_html folder and a www folder, anything
uploaded into one also gets put in the other. so i am wondering what is the point of both of these
folders? can someone tell me why each one exists?....
.php?id=html Not Working
(15) I use a single php file for all my tag decorations and image calling so that each page is lighter
and therefore isn't bogged down with the same repeated code over and over, which allows me not
only to much easier change my layout and design (as I often do) but once I've finally gotten it
up and working here, I realized none of the links work, I doubled, and triple checked them over and
over again to make sure I wasn't making a mistake. I swore trap17 supported php, so why
isn't it working? Am I missing some sorta code that i need to add, or need to take a....
Html Editor Glitch
(7) Three times I've tried using HTML Editor to edit my index.html page and the first 2 times it
instantly deleted all the page's coding and replaced it with the word "undefined". I noticed
the 3rd time after editing a page it gives the following message: QUOTE
%2fhome%2fjoshua%2fpublic_html/index.html File Saved
-------------------------------------------------------------------------------- open index.html
failed: Permission denied at cpanel.pl line 469 Carp::croak('open index.html failed: Permission
denied') called at /usr/local/cpanel/Cpanel/Fi....
I Have A Question About Where To Put My Html.
(6) yeah i'm hosting a sit on her but i'm completely lost on how this stuff works can someone
tell me where i would put the html?? or just how i would go about making the site work with stuff
acutally on it.. please i'm in desparate need of help.....
Help With Webhosting
index.html? (4) I need help with my webhosting. Whenever I access http://portal.trap17.com , this comes up: QUOTE
Welcome to your Hosting Account! This site is currently Hosted at trap17.com If you are
seeing this message then it means that your site is up and your account is functioning properly.
Please see to it that you do the following steps before you continue :- 1. Login to your cpanel
by typing, http://yoursite.com/cpanel . 2. Enter the userID and Password. (check your PM at the
Forums or your requested post) 3. Change the Email address in your Cpanel. (u....
Public_html Or Www Folder?
Where to put web files? (5) heh..im kind of new to this..but where to i put my pages that i want to show up? like in...
public_html www ??? plz help hehe Naming your topic title carefully would and will help
other members in the future. Please take topic title and description seriously. ....
Help With Html Code
Feedback Form (12) I have this HTML Code: QUOTE All comments and suggestions about this web site are very
welcome and a valuable source of information for us. Thanks! Your Name:
Your Email: Message: However, a problem that I
have is the fact that I dont know how to set up the code to send it to an Email address. I am not
that good with HTML Coding and would be grateful for assistance in setting this up. Thank you.....
Public_html Or Www Problem
Site won't show up. (7) I've got a problem with my site. When I'm copying it in www folder and trying to look
I've got only cpanel's error : There is no website configured at this address. So I thought
that I need to copy my site in public_html folder and when I'm copying my site there I still got
the same problem! Then I tried with "fantastico" to install nuke PHP. Instalation was completed
succesfully but when I'm trying to get on my nuke It shows me the same : There is no website
configured at this address. I'm hosting with mine domain... So where I must "co....
Index.html
How do you do it? (4) I know this is soO strange but when i upload my index.html what do i do after wards to make it my
index.html for my website? i know i should know this but im kinda what people would call an IDIOT
lol help me please.......
Enabling Html At A Phpbb
Can't get it going ... (7) I think I' ve done everything by the book. It was allowed on the forum ACP, it is allowed by
user, it seems to be allowed on the posting form, the tag list has been added at the ACP, the
preview accepts it , but the posts show the raw tags as part of the post. Is there anything else I
need to do? Does the Admin have to allow it? Is it dis-allowed for the trap17 free hosted accounts?
Your help is appreciated.....
Html Body Background Tag Help
(5) I was just about finish with my new subsite AmazingRed when I notioced next to the update box is a
white line, which should be there. Anything think they can help me? The code.. CODE <body
background="http://www.pretty.trap17.com/red/bg1.jpg" leftmargin="0"
topmargin="0" rightmargin="0" bottommargin="0"> ....
Is It Possible To Add Code To Phpbb
Adding HTML & What Not (3) I wanted to know if it is possible to add code to phpbb if so how. By adding code I mean adding html
so I could add stuff like affialiates and stuff like that. Thanks for your help. I also wanted to
know if that is allowed before anyone posts an answer, I figured it is if you leave the copyright
because it is open source.....
Html Tag For A Code Box
Where You Put HTML Code For Your Users (4) Well I have seen it all over the web. Lots of sites have code boxes so you can promote them or they
show you a code you can use for javascript and stuff like that. I would like to know the HTML code
for those boxes. Thanks in advance for your help.....
Index.html Does Not Work!
(12) I feel embarrassed to say this, but I do fall in trouble. I put my scripts to public_html directory,
and I forgot what I did. When I go to my homepage, it shows all files and directories in the
public_html directory, but not the right content of my homepage file index.html. If I click the
index.html, the right content of index.html shows up. I means that the index.html or index.php
won't be laughed. I find and try to recover it over and over, nothing happens. I am like a boy
who make a mistake that he can't understand. Can anyone tell my what did I do and how t....
Adding Webpages (html)
(10) ok when i upload my other webpages where do i uplaod them to? i have uplaoded them to practily
evrwhere and when i click a link on my index ( home ) page it doesn't read it proporly and sends
me to can not find web page blah blah blah. What do i do? or where and how is the proper way to
uplaod a hole site? ( html )....
Indexing On Subdomains
index.html does not show up (7) Hi there. When I creat html indexes they do not show up on my subdomains unless I directly link to
them ie http://dark.unicornrose.com/index.html I know I should be able to just link this way
http://dark.unicornrose.com and the index show up. If you will go there you will see instead it
shows the directory index. How do I get it to stop showing that? Thank you very much! Beth....
The 'index.html' File
Some help please :) (11) Ok when I enter my website address '...ork.trap17.com' I get the page where it says Welcome
to your hosting account. But instead of that I want it to be my forum index which means I have to
had '/index.php' on the end. How can I get rid of that page and make it my forum index? I
have the index.php place in the public_html folder and have deleted all instances of index.html
nearly 24 hours ago. /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' />
~ Munchie ~....
[code] No Right Click
This is a HTML Code!!! (3) <script language=JavaScript> <!-- var message="Function Disabled!";
/////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message);
return false; } } function clickNS4(e){ if
(document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){
alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4; } document.oncontextmenu=new Function("al....
Help Me!
Need help with index.html problem!!! (6) I just uploaded my site but what do I do next? I uploaded the index.html and home.html files onto
the server but when I go to googlebyte.trap17.com it shows this: is this supposed to happen? did
i miss a step or something? please help!! btw when I try to access my wordpress
(/wordpress/) directory it says it isn't there. Is this a common problem and is there a
solution/workaround for this? Thankyou very much ~Googlebyte....
How Can I Upload Scripts?
And edit the HTML of my board? (1) Yes, those are stupid questions. I just would like to know how I can upload scripts to my site and
how to edit the HTML of my boards. Thanks in advance for any help!....
Html Help...
(4) ok....i did this QUOTE Best viewed in 1024x768 | and my site is
http://hostjunkies.trap17.com/ and the little images are showing up on the bottom? problem?....
How To Upload Files (html N Picd) To My Subdomain?
Help me please.... (1) I really need help on this one, please help me.......
Looking for html, php, convertor
|
|
Searching Video's for html, php, convertor
|
advertisement
|
|