Page 1 of 1

Yes I Do Hav Another On Enjoy Josh`

Posted: Thu Mar 04, 2004 6:37 am
by MaGIC
[color=\"red\"]Getting Started [/color]

Create a file named [color=\"blue\"]hello.php[/color] and put it in your web server's root directory (DOCUMENT_ROOT) with the following content:

<html>
<head>
<title>[color=\"green\"]PAGE TITLE[/color] </title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
</body>
</html>

Use your browser to access the file with your web server's URL, ending with the "/hello.php" file reference. When developing locally this URL will be something like http://localhost/hello.php or http://127.0.0.1/hello.php but this depends on the web server's configuration. Although this is outside the scope of this tutorial, see also the DocumentRoot and ServerName directives in your web server's configuration file (for Apache, this is httpd.conf). If everything is configured correctly, this file will be parsed by PHP and the following output will be sent to your browser:

<html>
<head>
<title>PHP Test</title>
</head>
<body>
<p>Hello World</p>
</body>
</html>

[color=\"red\"]Forms[/color]

<form action="action.php" method="post">
Your name: <input type="text" name="name" />
Your age: <input type="text" name="age" />
<input type="submit" />
</form>

There is nothing special about this form. It is a straight HTML form with no special tags of any kind. When the user fills in this form and hits the submit button, the action.php page is called. In this file you would write something like this:

Hi <?php echo &#036;_POST['name']; ?>.
You are <?php echo &#036;_POST['age']; ?> years old.

Then the script should show:

Hi Danny. You are 14 years old.

It should be obvious what this does. There is nothing more to it. The &#036;_POST['name'] and &#036;_POST['age'] variables are automatically set for you by PHP. Earlier we used the &#036;_SERVER autoglobal; above we just introduced the &#036;_POST autoglobal which contains all POST data. Notice how the method of our form is POST. If we used the method GET then our form information would live in the &#036;_GET autoglobal instead. You may also use the &#036;_REQUEST autoglobal, if you do not care about the source of your request data. It contains the merged information of GET, POST and COOKIE data.

(More Will Be Added Later&#33;)

Yes I Do Hav Another On Enjoy Josh`

Posted: Tue Mar 30, 2004 2:38 am
by Michael
Josh

OI&#33; JOSH&#33; Its All Yours Bro ENJOY YOUR PRIDE&#33;&#33;&#33;&#33;&#33; <img src=\'http://www.killanet.net/forum3/public/s ... >/good.gif\' class=\'bbc_emoticon\' alt=\'(Y)\' />

Yes I Do Hav Another On Enjoy Josh`

Posted: Tue Mar 30, 2004 5:01 am
by Josh
Good news!!! I Can see pictures from you and Adaera Micheal! <img src=\'http://www.killanet.net/forum3/public/s ... iggrin.gif\' class=\'bbc_emoticon\' alt=\':D\' /> <img src=\'http://www.killanet.net/forum3/public/s ... >/good.gif\' class=\'bbc_emoticon\' alt=\'(Y)\' />

and agian lol, like i said in messenger.. Good job and thanks agian =)

You\'re definatly getting the hang on this graphic stuff <img src=\'http://www.killanet.net/forum3/public/s ... igwink.gif\' class=\'bbc_emoticon\' alt=\';)\' /> Just like ur mum <img src=\'http://www.killanet.net/forum3/public/s ... /LSHIC.gif\' class=\'bbc_emoticon\' alt=\':lol:\' />

~Josh

Yes I Do Hav Another On Enjoy Josh`

Posted: Tue Mar 30, 2004 2:08 pm
by Skidz`Crew
First of all i would Like To say, That Is a Job Well Done And i'm Glad That So many people Like Makeing Graphics Well Done&#33; <img src=\'http://www.killanet.net/forum3/public/s ... /LSHIC.gif\' class=\'bbc_emoticon\' alt=\':lol:\' />

Yes I Do Hav Another On Enjoy Josh`

Posted: Wed Mar 31, 2004 2:24 am
by Josh
lol, how could anyone NOT like making graphics? <img src=\'http://www.killanet.net/forum3/public/s ... >/blum.gif\' class=\'bbc_emoticon\' alt=\':P\' />

Yes I Do Hav Another On Enjoy Josh`

Posted: Wed Mar 31, 2004 7:25 pm
by Skidz`Crew
Dunno how could People Not Like "Grand Theft Auto: Vice City"?

Back on Topic Lol&#33;

Yes I Do Hav Another On Enjoy Josh`

Posted: Wed Mar 31, 2004 11:46 pm
by Josh
I don\'t like it <img src=\'http://www.killanet.net/forum3/public/s ... #>/huh.gif\' class=\'bbc_emoticon\' alt=\':huh:\' />

Yes I Do Hav Another On Enjoy Josh`

Posted: Thu Apr 01, 2004 12:25 am
by mobil1_oils
[color=\"gray\"][font=\"tahoma\"]HOW DARE YOU NOT LIKE VICE CITY <img src=\'http://www.killanet.net/forum3/public/s ... Debate.gif\' class=\'bbc_emoticon\' alt=\'(debate)\' />, This simply will not do, i order you to 2 weeks as one Tommy Vercetti. CASE DISMISSED&#33;&#33;&#33; [/color][/font]

Yes I Do Hav Another On Enjoy Josh`

Posted: Thu Apr 01, 2004 1:07 am
by Skidz`Crew
<img src=\'http://www.killanet.net/forum3/public/s ... Debate.gif\' class=\'bbc_emoticon\' alt=\'(debate)\' /> <img src=\'http://www.killanet.net/forum3/public/s ... Debate.gif\' class=\'bbc_emoticon\' alt=\'(debate)\' /> (devil) you tell em Mobes LOL

Yes I Do Hav Another On Enjoy Josh`

Posted: Thu Apr 01, 2004 3:27 am
by Josh
Isn\'t that a game with killing and lots of gory graphics? <img src=\'http://www.killanet.net/forum3/public/s ... #>/huh.gif\' class=\'bbc_emoticon\' alt=\':huh:\' />

~Josh

Yes I Do Hav Another On Enjoy Josh`

Posted: Fri Apr 02, 2004 12:34 am
by mobil1_oils
[color=\"gray\"][font=\"tahoma\"]Yes, lol. But the graphics are very good for the amount of gameplay included on one disk, when it came out it was a a revolution in gaming. And now im just waiting for Grand Theft Auto - San Andreas to come out and Gran Turismo 4. [/color][/font]

Yes I Do Hav Another On Enjoy Josh`

Posted: Fri Apr 02, 2004 3:53 am
by Josh
I am against that game and think it should only be sold to 20+ years of age.

~Josh

Yes I Do Hav Another On Enjoy Josh`

Posted: Fri Apr 02, 2004 4:07 am
by mobil1_oils
[color=\"gray\"][font=\"tahoma\"]I am 16 and i own that game, but obviously my father bought it for me because it has a worldwide 18+ age tag on it.

I think 18+ is a quite sufficient age to put on such a game because it is also the same as movies. There is no movie you cant purchase after you reach 18 years of age.

I dont see why people should "Despise" it as much as they do, they can disapprove of it all they want... the easy way to stop that is to not buy the game in the first place... the same sort of reasoning applies for parents.

If a game has an 18+ only rating and they buy the game for their 10 - 12 - 14 - 16 year old son/daughter they are voiding all right to complain about the game having an impact on their child because they disregarded the age limit on the film.

Parents, children and people who play games, if you dont like a game, for the love of god dont buy the darn thing in the first place. that solves all your problems.

Sorry for going off topic but i needed to vent some steam of somewhere and im pretty sure that did the trick <img src=\'http://www.killanet.net/forum3/public/s ... /smile.gif\' class=\'bbc_emoticon\' alt=\':)\' />.


EDIT: This is not a personal shot on your behalf josh, just a shot at parents and people who buy this game then complain, lol.
[/color][/font]

Yes I Do Hav Another On Enjoy Josh`

Posted: Fri Apr 02, 2004 4:31 pm
by Skidz`Crew
I am 16 and i own that game, but obviously my father bought it for me because it has a worldwide 18+ age tag on it.

I think 18+ is a quite sufficient age to put on such a game because it is also the same as movies. There is no movie you cant purchase after you reach 18 years of age.

I dont see why people should "Despise" it as much as they do, they can disapprove of it all they want... the easy way to stop that is to not buy the game in the first place... the same sort of reasoning applies for parents.

If a game has an 18+ only rating and they buy the game for their 10 - 12 - 14 - 16 year old son/daughter they are voiding all right to complain about the game having an impact on their child because they disregarded the age limit on the film.

Parents, children and people who play games, if you dont like a game, for the love of god dont buy the darn thing in the first place. that solves all your problems.

Sorry for going off topic but i needed to vent some steam of somewhere and im pretty sure that did the trick <img src=\'http://www.killanet.net/forum3/public/s ... /smile.gif\' class=\'bbc_emoticon\' alt=\':)\' />.


EDIT: This is not a personal shot on your behalf josh, just a shot at parents and people who buy this game then complain, lol.
i'm With Mobes, People Who dont like to game and are agenst it just Dont Buy it, but again Josh, no offinse to you mate&#33;

Now Back on topic Befor We Get our A&#036;&#036; Kicked&#33;




BTW Did i Mention that i am 15 But The age to Buy that game here is 17 lol <img src=\'http://www.killanet.net/forum3/public/s ... /smile.gif\' class=\'bbc_emoticon\' alt=\':)\' />

Yes I Do Hav Another On Enjoy Josh`

Posted: Sat Apr 03, 2004 2:24 am
by Sp3culuM
GTA: VC is a wicked game. I was playing GTA when they first came out, i was 14/15 (something like that), done no harm to me <img src=\'http://www.killanet.net/forum3/public/s ... >/blum.gif\' class=\'bbc_emoticon\' alt=\':P\' />