OhMyBosh 0 Report post Posted May 2, 2005 WHAT IS PHP? Im talking about the php that you use so that you make all your information in text files! what's the code that you put on the space that you want to put the information and what are the links to other pages on your site? Could someone help me out? Thanks, Oh My Bosh. Share this post Link to post Share on other sites
mizako 0 Report post Posted May 2, 2005 I really do not understand what you are saying. If you are looking for a PHP overview, you should just visit PHP official site. If you are looking for any other thing please formulte your question again. Share this post Link to post Share on other sites
R0boT39 0 Report post Posted May 2, 2005 You might want to take a look trhough the PHP forum.Click here Share this post Link to post Share on other sites
OhMyBosh 0 Report post Posted May 2, 2005 You know when you goto a website and at the top you see something like. http://forums.xisto.com/no_longer_exists/ or something like that. I want to know how you do that. Thanks, Robot39. I'll check the php forum. Share this post Link to post Share on other sites
psychiccyberfreak 0 Report post Posted May 2, 2005 are you talking about a forum? The ? after the .php means that whatever comes before the = is a variable that is being carried over to a different page, and after the = is the value. Anything else? Share this post Link to post Share on other sites
madangel 0 Report post Posted May 3, 2005 THe thing you want to is the simple php code one, it uses the function called Get, check the php manual to find out more Share this post Link to post Share on other sites
OhMyBosh 0 Report post Posted May 3, 2005 Okay, but what are the codes for that? Like the code you put on your html document? ? I'm sorry if this is confusing to you all. But I'm confused too. Share this post Link to post Share on other sites
snlildude87 0 Report post Posted May 3, 2005 Okay, I'm going to give you a mini-tutorial on PHP using the little question mark thing that you're asking. Ready? 1. Create a file named testphp.php 2. Open testphp.php and copy and paste the following: <?php $myname = $_GET["name"]; echo "Hello, " . $myname . "!\n\nEnjoying your first PHP page?";?>3. Save testphp.php4. Upload testphp.php onto your cpanel. I'd put it inside your public_html folder but no deeper than that. 5. Now, in your browser, go you http://forums.xisto.com/no_longer_exists/, and you should see Hello, ohmybosh Enjoying your first PHP page? .Remember to change yourdomain in the URL above to yourdomain You can even change "ohmybosh" in the URL to some other name, and see the effect. Cool, huh? Share this post Link to post Share on other sites
OhMyBosh 0 Report post Posted May 5, 2005 Thanks alot snlildude87. I will make you admin. Share this post Link to post Share on other sites
Kiko_Way 0 Report post Posted May 6, 2005 Ha, I also didn't know about php- then I wanted a site after I became familiar with it. Its not that hard to learn. The way I learned was downloading the LUE2 sorce, and just looking at it and doing MINOR changes to see what it did. I also had a PB site, so that kinda helped me off when I had to add new stuff to my already sucky site. Just make sure you dont edit somethings- use common sence, like dont change <B> to <bumblebee> or something. Share this post Link to post Share on other sites