views:

1481

answers:

13

hi mi name is Carlos i'm from guatemala, i need help, I am a beginner in the programming and I need good books to be able to associate with the programming. you could help me, the language that strikes me is php and java for connections to DB

+3  A: 

I would read the Java tutorials. Books cost money, the internet is free!

jjnguy
Keep in mind that net connections may not be as cheap or ubiquitous in Guatemala as they are here in the US.
Chris Upchurch
I figured that since he was asking for help online, the resource was available to him. Otherwise he would have went to a bookstore or library.
jjnguy
+4  A: 

I'd recommend the online PHP tutorial and the book Head First Java. They're both great for beginning programmers.

Update: I also recently picked up Head First PHP and MySQL, and it's pretty good. Definitely worth it to look at the online preview to see if you can learn anything from it.

Bill the Lizard
A: 

Beginning PHP on apress, is pretty good.

on Amazon

DevelopingChris
A: 

"Thinking Java" is a great book on Java and you can download then whole thing for free

http://www.mindview.net/Books/TIJ/

Jeff
A: 

change your question subject to be your question. Like "Recommend some good beginning PHP and Java books".

Kevin Sheffield
A: 

http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)

Learn C. Once you learn C, Java/PHP/C#/etc become a lot easier to grasp. Plus you will be learning how to do a lot of things manually and making a lot of important mistakes. You will be able to intelligently discuss the benefits and drawbacks of garbage collection, object orientation, and a lot of other techniques others take for granted.

toast
A: 

The PHP documentation at http://docs.php.net is actually one of the best resources for learning PHP by example.

Once you get a basic understanding of the language, download a few open source PHP projects and see how they function. Hands-on hacking is the best tutorial in my opinion.

A: 

Thinking Java is a great book, for PHP the documentation online and this book online http://hudzilla.org/phpwiki/index.php?title=Main_Page.

eaguilar
A: 

Move on to this PHP book: http://www.apress.com/book/view/9781590599099 as soon as possible, it'll introduce you to concepts that will stand you in good stead for any modern language and will teach you good habits early. Welcome to the club!

A: 

I personally liked php architect's Zend PHP 5 Certification Study Guide for PHP and SCJP Exam for J2SE 5 for Java.

THE book for Java, once you get past the syntax and concepts, is definitely Effective Java.

Sorin Mocanu
A: 

Java

Java Notes - Very Neat as class notes

pramodc84