View Full Version : php tutorial location?
vkidv
09-07-2002, 08:32 PM
i have php access thingy on my server :cool:
but now is the problem - how do i use it? make it?:confused:
anybody can direct me somwhere would be really apreciated*
regards
sam
---
*cant spell, lol
:rolleyes: :rolleyes: :rolleyes:
vkidv
09-07-2002, 08:33 PM
what i mean is,
is there a site which helps?
is php.net/com a good place?
Nightfire
09-07-2002, 09:30 PM
php.net is ok, but it's mainly somewhere to go just to look up what a command does.
I learnt from http://www.devshed.com and http://www.phpbuilder.com
mordred
09-08-2002, 12:47 PM
http://www.phpbeginner.com ;)
There is a good link list on php.net, search for a links section, IIRC there were many good sites mentioned there.
Plus, if you have coding questions, we are here to discuss them.
freakysid
09-08-2002, 03:31 PM
check out this list of resources too:
http://www.sitepointforums.com/showthread.php?s=&threadid=18699
Your first php script:
// save this file as hello.php on your server
// then call it from your browser
<html>
<head><title>Hello!</title></head>
<body>
<?php
$myName = "John Doe"; // put your name into the quotes.
echo $myName;
?>
</body>
</html>
Your second php script
// save this in a file named phpinfo.php on your server
<?php phpinfo() ?>
:thumbsup:
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.