PHP is a serious language, not hard to learn either. I'm pretty sure no one will waste their time teaching someone else. ****** has every tutorial type you will ever need to learn!
Posts: 944
Threads: 77
Joined: Dec 2010
Reputation:
0
Why the fuck are you guys posting something else, stop going offtopic! I asked for a teacher, not for links and stuff.
Posts: 372
Threads: 8
Joined: Jan 2011
Reputation:
0
If someone can teach you PHP for free and online that will be Bucky! Give him a chance, he's the best one you'll find...
Posts: 241
Threads: 22
Joined: May 2011
Reputation:
0
Idea:
Someone could teach him php, and he will teach pawn in exchange. Just an idea, i don't know how it would work out, lol. If you know pawn of course.
Posts: 1,739
Threads: 53
Joined: Oct 2010
Reputation:
0
Use w3schools. Pretty cool site and has all of the documentation.
Posts: 371
Threads: 6
Joined: Feb 2011
Reputation:
0
Markx well I dont think anyone will give you free PHP lessons.
Imas dobre hrvatske tutorijale, ja sam sa njima naucio i stvarno nije tesko.
Posts: 412
Threads: 20
Joined: Mar 2009
Reputation:
0
I personally don't think you can just go out and "learn" a language. You need to have a project in mind, even if it's very simple. When you have that, you can then make help topics for things you get stuck with.
Posts: 554
Threads: 49
Joined: Feb 2007
Seriously? You know Pawno well but you can't learn php? PHP is propably the easiest programming language..
example:
php
pawn Code:
$asd = 'lol lol lol';
if($asd=='lol lol lol') echo "Value: " . $asd;
pawno:
pawn Code:
new asd[32];
strcat(asd, "lol lol lol", 64);
if(!strcmp(asd, "lol lol lol", true))
{
new string[64];
format(string, 64, "Value: %s", asd);
SendClientMessage(string)
}
I actually havent learned php, but i have created many scripts, helping system (ticket helping) and idea submiting with my newbie knowlodge. PHP is easy, you don't need a teacher for that. Just read w3school tuts.
Posts: 6,129
Threads: 36
Joined: Jan 2009
YouTube videos are horrible for learning any kind of language from.
http://www.tizag.com/phpT
http://www.php.net
http://lmgtfy.com/?q=php+tutorials+for+dummies
Quote:
PHP is propably the easiest programming language..
|
PHP isn't even a programming language - it's just another scripting language, it's easier than Pawn though! (at least the basic syntax without object-oriented code is).
Posts: 554
Threads: 49
Joined: Feb 2007
Quote:
Originally Posted by Calg00ne
PHP isn't even a programming language - it's just another scripting language, it's easier than Pawn though! (at least the basic syntax without object-oriented code is).
|
I assume that you don't know what programming means..
Programming=scripting.
Posts: 6,129
Threads: 36
Joined: Jan 2009
Quote:
Originally Posted by SaW_[VrTx]
I assume that you don't know what programming means..
Programming=scripting.
|
"A script is what the actors have, a programme is given to the audience."
Computer programming and scripting retain a similar difference.
Scripts are executed from within a program and scripts are produced by scripting languages. Programs are programmed in programming languages, which are the parent to child "scripts."