mr_mithun73
New Member
- Messages
- 3
- Reaction score
- 0
- Points
- 0
Hello, I am little interested to learn PHP. But I do not know from where to start. Can anyone help me?
These look to be SQL types. Programming is a subtle discipline, and making a distinction between such things as values and a types, and among parts of different languages is of prime importance. Failing to distinguish things that are different is a fatal mistake, programming-wise.[...] the different values. These being int, char, varchar, bool, and a lot of others, which will come in handy when dealing with php.
-- abstraction
(define (f x)
(- (* x x) 1))
-- application
(f 1)
-- variables
(define x 2)
(f x)
PHP is really kind of like a whole other version of HTML with the same stuff, but also has some more loaded into it.. So i would go to w3schools.com because they have a great tutorial for HTML. My friend learned it that way and you can trust them to be up to date. You must know HTML before learning PHP. Then you go on to PHP.
Javascript and CSS would be good to learn as well because CSS adds style to your page and Javascript allows for user interactivity with your site.
EDIT: Ok, w3schools actually is an untrustable source.
While mission did point out that learncpp does their programming in hungarian notation, I still believe it is a great learning resource to use.
w3schools really isn't cool, it's terrible!Hi,
I'm a PHP developer and usually I get asked that question a lot and I find that the best place to start is http://www.w3schools.com/ . This is where I have pointed a lot of people who are interested because the site shows you the basics and some advanced development at which point you can attempt to build an application yourself. I always go there if I'm interested in learning something new and quickly.
Hope it helps.
One of the best sources to learn programming is Structure and Interpretation of Computer Programs (SICP, or the Wizard Book). It covers programming in terms of Scheme, not PHP, but programming doesn't depend upon understanding a particular language. The syntax of Scheme is one of the simplest.