[Helper]  Professional PHP/MySQL developer opening up for technical questions [FREE] menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)

    [Helper] Professional PHP/MySQL developer opening up for technical questions [FREE]

    Hey there, let's bring some life back to this section of the forums.

    I'm SniffingPickles (literally). I've been a professional software developer for 8 years now. I'm here to answer questions on how to "code".


    Always make sure to put your code in the PHP brackets.

    Let's open up shop. All help will be minimal, especially if it's asking for a lot. I will not design and develop an entire website for you, but I will help you conceptualize what you're trying to do.
    Need a guild in the US? Visit murlocs.com

    [Helper]  Professional PHP/MySQL developer opening up for technical questions [FREE]
  2. #2
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright so I want to have a website with Hello World in there... I really have no clue how to do it.. I know how to open php
    <!php Hello World !>
    but it does not display hello world... Can you help me? Thanks <3

  3. #3
    JD's Avatar Fedora Potato Johnson V
    Reputation
    1113
    Join Date
    Jan 2008
    Posts
    3,129
    Thanks G/R
    12/89
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thunderofnl View Post
    Alright so I want to have a website with Hello World in there... I really have no clue how to do it.. I know how to open php but it does not display hello world... Can you help me? Thanks <3
    You forgot the quotes man. It's <"!php" Hello World "!">

    Gawd.




  4. #4
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Thunderofnl View Post
    Alright so I want to have a website with Hello World in there... I really have no clue how to do it.. I know how to open php but it does not display hello world... Can you help me? Thanks <3

    To start off, your tags for opening the PHP command are incorrect. You'll always want to start off with:

    PHP Code:
    <?php echo "Hello, World"?>
    or if you have short_codes enabled:

    PHP Code:
    <? echo "Hello, World"; ?>
    PHP: PHP tags - Manual

    From there I ask you to check the PHP configuration on your server. To do that place the following line of code in your document:

    PHP Code:
    <?php phpinfo(); ?>
    That will show you what version of PHP you're using, what general configuration your server has set up for you and so forth.


    That's one place to start, let me know if you have any other questions.
    Need a guild in the US? Visit murlocs.com

  5. #5
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SniffingPickles View Post
    To start off, your tags for opening the PHP command are incorrect. You'll always want to start off with:

    PHP Code:
    <?php echo "Hello, World"?>
    or if you have short_codes enabled:

    PHP Code:
    <? echo "Hello, World"; ?>
    PHP: PHP tags - Manual

    From there I ask you to check the PHP configuration on your server. To do that place the following line of code in your document:

    PHP Code:
    <?php phpinfo(); ?>
    That will show you what version of PHP you're using, what general configuration your server has set up for you and so forth.


    That's one place to start, let me know if you have any other questions.

    So I put this in my index.rb and then run my Ruby on Rails server right?

  6. #6
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Thunderofnl View Post
    So I put this in my index.rb and then run my Ruby on Rails server right?

    You could, however that wouldn't output the executed PHP code. You'd have to drop that into a file that ends in .php (given your server has the PHP engine/library installed).
    Need a guild in the US? Visit murlocs.com

  7. #7
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SniffingPickles View Post
    You could, however that wouldn't output the executed PHP code. You'd have to drop that into a file that ends in .php (given your server has the PHP engine/library installed).
    Hmmm... I've installed Apache 2.1 and I changed the extension to .php but when I try to go to my page it downloads the php file... What the hell...

  8. #8
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Thunderofnl View Post
    Hmmm... I've installed Apache 2.1 and I changed the extension to .php but when I try to go to my page it downloads the php file... What the hell...
    What version of PHP are you using? Could you print out the phpinfo?
    Need a guild in the US? Visit murlocs.com

  9. #9
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I try to do that I download the page... and when I change it to .html it displays
    <?php phpinfo(); ?>
    .. Is that what you were looking for?

  10. #10
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Thunderofnl View Post
    When I try to do that I download the page... and when I change it to .html it displays .. Is that what you were looking for?
    You trickster, could you show me your php.ini file? Also, what version of PHP is installed?
    Need a guild in the US? Visit murlocs.com

  11. #11
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you mean? Isn't PHP installed when you install Apache? I tried to find a php.ini file but I can't seem to find it...

  12. #12
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Thunderofnl View Post
    How do you mean? Isn't PHP installed when you install Apache? I tried to find a php.ini file but I can't seem to find it...
    Oh good point, can you make sure the php extension is installed on Apache? Screenshot the homepage of options for Apache's webserver.
    Need a guild in the US? Visit murlocs.com

  13. #13
    Thunderofnl's Avatar Elite User C# / Java / PHP Programmer
    Authenticator enabled
    Reputation
    491
    Join Date
    May 2008
    Posts
    1,033
    Thanks G/R
    20/20
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do you mean this page?

  14. #14
    Vengfull's Avatar War is Coming - Warmonger VPS & Hosting Services
    CoreCoins Purchaser
    Reputation
    782
    Join Date
    Jan 2012
    Posts
    664
    Thanks G/R
    166/80
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The entertainment in this thread is strong... y u stahp?

  15. #15
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Vengfull View Post
    The entertainment in this thread is strong... y u stahp?
    I got bored.
    Need a guild in the US? Visit murlocs.com

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request]Looking for WebDeveloper - PHP/MYSQL
    By Supadupaflyfly in forum Art & Graphic Design
    Replies: 0
    Last Post: 03-15-2010, 04:06 PM
  2. [Hiring] PHP Web Developer for Collaborative Project
    By Hellgawd in forum General Trading Buy Sell Trade
    Replies: 1
    Last Post: 12-30-2009, 12:46 AM
  3. [Help]Php mysql coding not working
    By Troys in forum Programming
    Replies: 19
    Last Post: 07-25-2008, 03:49 AM
  4. Ascent, PHP, MySQL, Apache and how they work together
    By scottyrabbit in forum WoW EMU Guides & Tutorials
    Replies: 9
    Last Post: 04-22-2008, 05:07 PM
  5. Ascent, PHP, MySQL, Apache and how they work together
    By scottyrabbit in forum WoW EMU Guides & Tutorials
    Replies: 2
    Last Post: 04-13-2008, 06:49 AM
All times are GMT -5. The time now is 08:16 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search