• Just another newbie question hope you all dont get to annoyed by me…
    I understand that PHP is a sever side language and therefore when you “view source” from a PHP coded website it only displays the output of the PHP via HTML code.
    Is there a way to view the acutal PHP code and the HTML? Or is there a way to download the entire page to view the code in an editor?
    I am not looking to steal PHP code, I am simply interested in seeing how others are using PHP in thier sites so I can get a better understanding on how to use PHP in my own site.
    Thanx again
    Joe.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Only if the author wants you to see the code. Sometimes instead of code.php, you can view code.phps and that page will show you the source. Passwords and other data that must not be revealed are parts of the php code; obviously these can’t be revealed at the whim of the viewer.

    Thread Starter superspiker

    (@superspiker)

    hmmmm…
    seems like there should be a way to do this.
    wierd.
    Joe.

    Thread Starter superspiker

    (@superspiker)

    Did some minor research on Google about this.
    Seems like it would be pretty stupid to allow the PHP code to be avalible to whomever wanted it.
    As Hella stated above there is a security risk that includes sensitive data being displayed.
    Also, It could end up being a hackers dream if they were able to see the code if it were written poorly or had any holes that had not been patched.
    Should have searched Google more extensivly before posting here.
    Oh well, Live and learn.
    Joe.

    php.net lets you view the source

    Thread Starter superspiker

    (@superspiker)

    Wow.
    I checked out php.net per the above post. They have a link at the bottom right of each page that allows you to view the source (including php of course) of the current page.
    As that is really helpful I should have been more specific in my intial post.
    I would like to see the source (including PHP) of a WordPress blog that has been integrated into a pre-existing site template.
    This would help me a great deal as I am a very visual learner. If I can see how and where the PHP code is inserted into this type of layout I can then better implement it into my own site.
    Examples in any case help my level of understanding.
    Again, to make myself clear I am not attempting to copy or steal the source of somebody’s website that they worked very hard to put together. I am attempting to create my own site, not copy someone elses.
    That being said I pose the following question… Would anyone (with the type of layout I am attempting) be willing to share thier WordPress index.php file with me? I would be looking for WordPress index.php files that have been integrated into an exsiting website template.
    Thanx
    Joe.

    There are huge amounts of free php code available in tutorials at places like http://www.phpfreaks.net or http://www.zend.com/zend/tut/index.php or (god forbid) any good php book. What good reason on earth would you have to steal working source code.
    besides which, I have to say, having done a lot of contracts, most working php code I have had to work on is crap.
    P.S. A good programmer never places sensitive information such as db passwords in their php code in the htdoc tree. They include it from somewhere outside the tree with only needed permissions on it.

    Super, if you are interested in integrating WP in an exisiting site, you should read this thread:
    http://wordpress.org/support/3/13159

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Download PHP Source from websites’ is closed to new replies.