Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Php?
OhMyBosh
post May 2 2005, 09:10 PM
Post #1


Premium Member
********

Group: Members
Posts: 186
Joined: 26-April 05
Member No.: 6,209



WHAT IS PHP? huh.gif

Im talking about the php that you use so that you make all your information in text files! smile.gif 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.
Go to the top of the page
 
+Quote Post
mizako
post May 2 2005, 09:31 PM
Post #2


Super Member
*********

Group: Members
Posts: 372
Joined: 16-August 04
From: Spain
Member No.: 824



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.
Go to the top of the page
 
+Quote Post
R0boT39
post May 2 2005, 09:54 PM
Post #3


Newbie [Level 3]
***

Group: Members
Posts: 48
Joined: 14-April 05
Member No.: 5,673



You might want to take a look trhough the PHP forum.

Click here
Go to the top of the page
 
+Quote Post
OhMyBosh
post May 2 2005, 09:57 PM
Post #4


Premium Member
********

Group: Members
Posts: 186
Joined: 26-April 05
Member No.: 6,209



You know when you goto a website and at the top you see something like. http://www.whatever.com/index.php?wat=junk or something like that. I want to know how you do that.

Thanks, Robot39. I'll check the php forum.
Go to the top of the page
 
+Quote Post
psychiccyberfrea...
post May 2 2005, 10:37 PM
Post #5


Super Member
*********

Group: Members
Posts: 425
Joined: 19-October 04
From: long island, ny
Member No.: 1,831



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?
Go to the top of the page
 
+Quote Post
madangel
post May 3 2005, 12:47 AM
Post #6


Member [Level 1]
****

Group: Members
Posts: 67
Joined: 17-April 05
Member No.: 5,772



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
Go to the top of the page
 
+Quote Post
OhMyBosh
post May 3 2005, 09:38 PM
Post #7


Premium Member
********

Group: Members
Posts: 186
Joined: 26-April 05
Member No.: 6,209



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.
Go to the top of the page
 
+Quote Post
snlildude87
post May 3 2005, 09:53 PM
Post #8


Moderator
***************

Group: Members
Posts: 2,325
Joined: 8-March 05
From: Mawson, Antarctica
Member No.: 4,254



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:
CODE
<?php
$myname = $_GET["name"];

echo "Hello, " . $myname . "!\n\nEnjoying your first PHP page?";
?>

3. Save testphp.php
4. 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://yourdomain.trap17.com/testphp.php?name=ohmybosh, and you should see
QUOTE
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? smile.gif
Go to the top of the page
 
+Quote Post
OhMyBosh
post May 5 2005, 12:02 AM
Post #9


Premium Member
********

Group: Members
Posts: 186
Joined: 26-April 05
Member No.: 6,209



Thanks alot snlildude87. I will make you admin.
Go to the top of the page
 
+Quote Post
Kiko_Way
post May 6 2005, 09:12 PM
Post #10