@cpvr I'd rather code from scratch. Not sure how good I am at the webserver stuff. I'd like to be able to jump into a website that's basic stuff is setup and try my hand at coding a game to see if I even like it haha
virtual pets forum - Virtual pets news - Gaming discussion - General chat - Art marketplace
@cpvr I'd rather code from scratch. Not sure how good I am at the webserver stuff. I'd like to be able to jump into a website that's basic stuff is setup and try my hand at coding a game to see if I even like it haha



I'll see if I can get a bit of time this weekend to clean up some of the PHP issues that you get ... but it likely won't be until Monday at the earliest.
~judda
Personal Site, Blog, Development Projects all wrapped up into one convenient location. Click here to begin. I am very straight to the point ... if you don't like it ...just feel free to ignore me.
Blog :: Development Blog :: Resume
Virtual Pet News - Aggregator of all pet site News Feeds
SQL Blog Feed - Aggregator of several SQL blog sites
PHP Blog Feed - Aggregator of several PHP blog sites



Okay ... I lied ... I never got to it today ... spent the entire day just relaxing instead XD
~judda
Personal Site, Blog, Development Projects all wrapped up into one convenient location. Click here to begin. I am very straight to the point ... if you don't like it ...just feel free to ignore me.
Blog :: Development Blog :: Resume
Virtual Pet News - Aggregator of all pet site News Feeds
SQL Blog Feed - Aggregator of several SQL blog sites
PHP Blog Feed - Aggregator of several PHP blog sites
Is it practical to learn off KittoKittoKitto being it's from 2009?
@judda @PaulSonny @nobackseat
__________________________________________________
Maynard: I think most of us grew up in a pretty sterile environment. A
lot of that stuff just wasn't around. It's all pretty much peaches and
cream . . . flowers . . . everything's nice, ignore all the bad stuff.
And the world's just not like that. And I think that the sooner people
get to the point where they realize that the ugly stuff is just as
important as the beautiful stuff - it goes hand in hand, I think that
we can get on with evolving. -The Tool Page: Articles
__________________________________________________
Maynard: I think most of us grew up in a pretty sterile environment. A
lot of that stuff just wasn't around. It's all pretty much peaches and
cream . . . flowers . . . everything's nice, ignore all the bad stuff.
And the world's just not like that. And I think that the sooner people
get to the point where they realize that the ugly stuff is just as
important as the beautiful stuff - it goes hand in hand, I think that
we can get on with evolving. -The Tool Page: Articles
Good:
- Introduce you to PHP
- Introduce you to web logic
- Introduce you to what seems like a very poorly done MVC framework of PHP
- Get a sample database to see what works and what doesn't.
Bad:
- From what I've seen it uses a lot of bad (outdated) practices (including the way it handles data which is pretty scary)
- It has the possibility of teaching you bad practices when it comes to PHP (honestly though, I think that's part of learning, just have to make sure you look at other ways to code than this)
- It's built off a poor implemented "MVC" framework, so mixing of logic I can see being problematic. Which when doing any /real/ development could give you a headache.
Really I just don't trust this setup at all, and if I had free time would setup an instance just to run security scans against.
Honestly when it comes to people wanting to learn how to make a petsite my suggestion would be:
1) Start with basic HTML/CSS tutorials.
2) Get a concept of how PHP works.
3) Get a concept of how databases work.
4) Learn how PHP and databases work together (hint: SQL/Queries).
5) Look at KittoKitto and see what it does (how a page is handled, how data is stored, etc) possibly good to setup an instance while you're learning 1-4 and compare usage.
6) Look into a community driven framework and start going through their tutorial.
During this whole process your best bet is to find a good developer community and start putting a site together (trial, error, ask).
-- your first few attempts are going to be horrid. You'll bang your head against a desk, cry, and throw up (maybe not this intense but you get where I'm going.)
What I'm trying to get at - is learn Basic PHP & SQL, learn from other projects, use a community driven framework to help with setup/security/personal development, and ask questions.
The statement of "There are no dumb questions" I assure you really applies when it comes to coding questions.
What is a MVC Framework?
Could you give me some examples of what's bad and what's good?Bad:
- From what I've seen it uses a lot of bad (outdated) practices (including the way it handles data which is pretty scary)
What do you mean security scans against? What is wrong with the setup?- It has the possibility of teaching you bad practices when it comes to PHP (honestly though, I think that's part of learning, just have to make sure you look at other ways to code than this)
- It's built off a poor implemented "MVC" framework, so mixing of logic I can see being problematic. Which when doing any /real/ development could give you a headache.
Really I just don't trust this setup at all, and if I had free time would setup an instance just to run security scans against.
I have eight years of experience in the field of HTML/CSS, I just never moved on.Honestly when it comes to people wanting to learn how to make a petsite my suggestion would be:
1) Start with basic HTML/CSS tutorials.
I do, I took a computer programming class in High School which taught me qBasic. Surprisingly, I remember it very well, and it's helped me catch on to the basics of php coding lightning fast.2) Get a concept of how PHP works.
Where do you suggest I start?3) Get a concept of how databases work.
4) Learn how PHP and databases work together (hint: SQL/Queries).
Good developer community? How so and could you give me examples by chance?5) Look at KittoKitto and see what it does (how a page is handled, how data is stored, etc) possibly good to setup an instance while you're learning 1-4 and compare usage.
6) Look into a community driven framework and start going through their tutorial.
During this whole process your best bet is to find a good developer community and start putting a site together (trial, error, ask).
Thank you sooooo much! I will take your advice and regard it highly.-- your first few attempts are going to be horrid. You'll bang your head against a desk, cry, and throw up (maybe not this intense but you get where I'm going.)
What I'm trying to get at - is learn Basic PHP & SQL, learn from other projects, use a community driven framework to help with setup/security/personal development, and ask questions.
The statement of "There are no dumb questions" I assure you really applies when it comes to coding questions.
__________________________________________________
Maynard: I think most of us grew up in a pretty sterile environment. A
lot of that stuff just wasn't around. It's all pretty much peaches and
cream . . . flowers . . . everything's nice, ignore all the bad stuff.
And the world's just not like that. And I think that the sooner people
get to the point where they realize that the ugly stuff is just as
important as the beautiful stuff - it goes hand in hand, I think that
we can get on with evolving. -The Tool Page: Articles
http://en.wikipedia.org/wiki/Model%E...0%93controller
TL;DR Essentially a way to help separate your application into data objects, business logic and view structure.
Most popular PHP frameworks use this approach although recently people have suggested alternatives (different convo)
If you're really interested in best practices this new site is amazing http://www.phptherightway.com/
Also it has a great example on proper database usage direct click
http://en.wikipedia.org/wiki/Web_app...curity_scanner
Awesome, then move on to the next steps!
Even better, once you know logic, you know programming. PHP, Ruby, Javascript, Objective-C, etc is really just learning the API, structure of applications, and best practices.
Again - http://www.phptherightway.com/
http://stackoverflow.com/
http://www.quora.com/PHP
http://www.quora.com/MySQL
http://www.quora.com/SQL
http://www.reddit.com/r/PHP/
http://www.reddit.com/r/MYSQL/
http://www.reddit.com/r/SQL/
Or here, feel free to ping me with questions and I'll get back to you ASAP
Anytime.
Bookmarks