Return to iWEBTOOL

Go Back   iWEBTOOL Talk > The Web and your Website > Programming > PHP
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
 
Welcome to iWEBTOOL Talk, where you talk about webmaster-related stuff.
 
Discuss topics which interest you.
With over thousands of threads (topics), we're sure you'll find something that'll interest you.
Ask for help whenever you need it.
We have thousands of members who are available to help you if you need it.
It's absolutely FREE!

 1  Register           2  Browse the board           3  Discuss whatever may interest you!
 


Reply
 
Thread Tools Search this Thread Display Modes
Old 11-05-2007, 11:24 AM   #1
nskyline
Newcomer
 
nskyline's Avatar
 
Join Date: Nov 2007
Posts: 18
nskyline is on a distinguished road
Default wanting to learn PHP

anyone can provide me a good tutorial to learn PHP?
__________________
Please, apply the signature policy
nskyline is offline   Reply With Quote
 
This is an Ad Revenue Sharing forum Place your advert here
SEO Checklist
Get yourself better ranking with
our "Do-it-Yourself" SEO Checklist.
Click Here
Old 11-05-2007, 02:38 PM   #2
UnKnown
Moderator
 
UnKnown's Avatar
 
Join Date: Aug 2006
Posts: 1,134
UnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really nice
Default Re: wanting to learn PHP

w3schools.com/php/default.asp
UnKnown is offline   Reply With Quote
Old 11-05-2007, 06:16 PM   #3
Resonate
Member
 
Resonate's Avatar
 
Join Date: May 2007
Location: A Remote server
Posts: 225
Resonate will become famous soon enough
Send a message via ICQ to Resonate Send a message via AIM to Resonate Send a message via MSN to Resonate Send a message via Yahoo to Resonate Send a message via Skype™ to Resonate
Default Re: wanting to learn PHP

Quote:
Originally Posted by seowebtools View Post
w3schools.com/php/default.asp

SNAP..! Great resources at w3schools, best thing is you dont need a £3000 loan for a uni course to learn it all
Resonate is offline   Reply With Quote
Old 11-06-2007, 01:57 AM   #4
UnKnown
Moderator
 
UnKnown's Avatar
 
Join Date: Aug 2006
Posts: 1,134
UnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really nice
Default Re: wanting to learn PHP

Quote:
Originally Posted by nskyline View Post
anyone can provide me a good tutorial to learn PHP?


Here is the first script i ever wrote with details on whats going on

Its a simple upload script that may help you get an idea on whats going on


Quote:
<?php // always add php do to other languages opening the same way
/*
Seowebtools
first
ever
php
Script

*/

$storefile = "folder/"; // where you want the image stored
$uploadfile = $storefile . $_FILES['userfile']['name']; // calls the line beolow this to check details

// i guess it would be smart to keep the permissions on this file as low as possible do to this line
if($_POST['username']=="seowebtools" && $_POST['password']=="password")
{
// file types excepted
if($_FILES['userfile']['type'] == "image/jpeg" || $_FILES['userfile']['type'] == "image/png" || $_FILES['userfile'][type]=="image/giff" || $_FILES['userfile'][type]=="image/gif")
{
// move file to location with a temp name
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile))
{
echo "File uploaded "; //done with success
}
else die("File not uploaded");// kills script
}
else
{
print "Wrong format"; // as described
}
}
else
{
print "Wrong details"; // dead username
}

?>
UnKnown is offline   Reply With Quote
Old 11-06-2007, 02:49 AM   #5
UnKnown
Moderator
 
UnKnown's Avatar
 
Join Date: Aug 2006
Posts: 1,134
UnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really niceUnKnown is just really nice
Default Re: wanting to learn PHP

oh you may want the form


Quote:
<html>
<head></head>
<body>
<form action="testproject.php" method="post">
<input name="userfile" type="file" /><br>
Username: <input name="username" type="text" /><br>
Password: <input type=password name="password" type="file" /><br>
<input type="submit" value="Send File" />
</form>
</body>
</html>
UnKnown is offline   Reply With Quote
Old 11-06-2007, 05:31 AM   #6
nskyline
Newcomer
 
nskyline's Avatar
 
Join Date: Nov 2007
Posts: 18
nskyline is on a distinguished road
Default Re: wanting to learn PHP

thanks guys, you all are so nice, thanks for the short-tutorials.
__________________
Please, apply the signature policy
nskyline is offline   Reply With Quote
Old 11-23-2007, 11:22 PM   #7
gold21c
Smurf
 
gold21c's Avatar
 
Join Date: Nov 2007
Posts: 17
gold21c is on a distinguished road
Default Re: wanting to learn PHP

A nice tutorial is at http://www.homeandlearn.co.uk/php/php4p1.html
gold21c is offline   Reply With Quote
Old 11-24-2007, 11:36 AM   #8
alemcherry
Senior Member
 
alemcherry's Avatar
 
Join Date: Mar 2007
Posts: 280
alemcherry will become famous soon enough
Default Re: wanting to learn PHP

It may not be a bad idea to buy a book. Dont look for the big fat books, something small and simple will help you get started. Once you are familier with the besics, there are a lot of online tutorial to help you. manual is also pretty useful.
alemcherry is offline   Reply With Quote
Old 11-25-2007, 12:06 AM   #9
detoam
Junior Guru
 
detoam's Avatar
 
Join Date: Feb 2007
Location: Canada
Posts: 663
detoam has a spectacular aura aboutdetoam has a spectacular aura about
Default Re: wanting to learn PHP

I would like to learn as well. My problem is that I need to be in a classroom. Private courses are super expensive. I was gonna go to a company and offer to sign a contract for a couple of Years if they pay for the course. But it isn't easy to find a reliable company in the first place.
__________________
Web hosting - with a choice of server location.
Link trading

detoam is offline   Reply With Quote
Old 11-25-2007, 01:34 AM   #10
timmy
Newcomer
 
timmy's Avatar
 
Join Date: Nov 2007
Posts: 11
timmy is on a distinguished road
Default Re: wanting to learn PHP

got any more tutorial plez
timmy is offline   Reply With Quote
Old 11-25-2007, 02:32 AM   #11
hasan_889
Hardcore Spam Killer!
 
hasan_889's Avatar
 
Join Date: Aug 2006
Location: London
Posts: 1,233
hasan_889 has a spectacular aura abouthasan_889 has a spectacular aura about
Send a message via MSN to hasan_889 Send a message via Yahoo to hasan_889 Send a message via Skype™ to hasan_889
Default Re: wanting to learn PHP

try this ebook ... this is a very easy and basic tutorial to beginners.

http://www.hasan-online.com/hasan/PH...evelopment.pdf



<--- Don't forget to inform me if you like it ... awarding rep would be appciated.
hasan_889 is online now   Reply With Quote
Old 12-07-2007, 05:34 PM   #12
elan08
Newcomer
 
elan08's Avatar
 
Join Date: Dec 2006
Posts: 10
elan08 will become famous soon enough
Default Re: wanting to learn PHP

I learned a lot from Sams Teach yourself PHP in 24 hours. I find it easier to have hard copy in front of me to learn it. Goto bookstore and browse the shelves, there are a lot of php books and B&N.
elan08 is offline   Reply With Quote
Old 12-14-2007, 08:49 AM   #13
urstop
Junior Member
 
urstop's Avatar
 
Join Date: Dec 2007
Location: India
Posts: 52
urstop is on a distinguished road
Default Re: wanting to learn PHP

Try PHP.NET site. It has all the details u need for php, also w3schools should have some good tutorials.
__________________
UrStop.com India's Property and Rental listings Search Tool
UrStop.com India's Property and Rental listings Search Tool
urstop is offline   Reply With Quote
Old 01-02-2008, 02:54 AM   #14
nadiralishah
Smurf
 
nadiralishah's Avatar
 
Join Date: Jan 2008
Posts: 2
nadiralishah is on a distinguished road
Default Re: wanting to learn PHP

w3schools.com is excellent for beginners..
nadiralishah is offline   Reply With Quote
Old 01-02-2008, 09:16 AM   #15
©®azy-¢øÐ3R
Smurf
 
©®azy-¢øÐ3R's Avatar
 
Join Date: Jan 2008
Posts: 21
©®azy-¢øÐ3R is on a distinguished road
Send a message via MSN to ©®azy-¢øÐ3R
Default Re: wanting to learn PHP

w3schools.com/php/default.asp is a good place to start.

downloads a free site template and have a little mess around as you imporve your skill develop the site more. also try to find a free php ebook these can help with tips and tricks ect.... need a template hit me up on msn ill be sure to help you.
__________________
Samari.org <----- webmasters forum comming soon...
crazy-coding@hotmail.co.uk im a php coder msg me for jobs.
©®azy-¢øÐ3R is offline   Reply With Quote
 
This is an Ad Revenue Sharing forum Place your advert here
Webmaster Tools Webmaster Tools Click Here
Reply



Quick Reply
Message:

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Must learn more Famous4Five Introduce yourself 2 05-24-2007 10:13 PM
Looking to learn CurtisErhart Introduce yourself 2 03-05-2007 12:48 PM
(New Site) Wanting to EXCHANGE links CircleOfLinks Marketing and Promotion 3 03-01-2007 11:58 PM
Wanting to Exchange Links with poker websites. ev8321 Advertise your website 2 11-08-2006 01:11 PM
New and want to learn from the ones who know bajanfund Introduce yourself 7 11-01-2006 06:58 PM


All times are GMT. The time now is 07:47 PM.


Powered by vBulletin v3.6.7 © 2008, Jelsoft Enterprises Ltd. SEO by vBSEO © 2006, Crawlability, Inc.