s4m 0 Posted October 28, 2013 Share Posted October 28, 2013 i just checked out the adobe section at thenewbostin and its perfect well for someone like me anyways... i like basic easy to follow guides.. thanks for the link Zend Certified Engineer course Url of the site:http://www.zend.com/services/certification/ sorry bro but if you want my help i need you to give me the exact name of the course you want the exams or books for.. all you did was link me to a site and I have to search for course names, and i cant di that coz i dont know which ones your doing.. eg: Zend php 5 CompTIA A+ or Networking + etc.. Link to comment Share on other sites More sharing options...
Ninetailz 6 Posted October 29, 2013 Share Posted October 29, 2013 You can also use http://www.youtube.com/user/TeachMeComputer?feature=watch <-- his channel Link to comment Share on other sites More sharing options...
cyimking 3 Posted November 4, 2013 Share Posted November 4, 2013 Eh, do you know any other languages like Java? If so then learning PHP is not tough at all. If you do not know JAVA or anything similar then find a project you want to do and work on it. For me is was a forum board. Take a look at w3 and try to build a very simple function or script (like a login system) then expand on it. Add more functions. Make the code neater, etc... And bam you know PHP PS, it might work for you but books were never really my thing. Link to comment Share on other sites More sharing options...
s4m 0 Posted November 4, 2013 Share Posted November 4, 2013 i believe thats what his doing, watching video tutorials and building something at the same time, like practical learning.. I doubt he is just reading books.. Link to comment Share on other sites More sharing options...
Krönik Karbon 2 Posted November 4, 2013 Share Posted November 4, 2013 (edited) Find some open source PHP scripts & dig into the code to see what does what.Trial and error; change some stuff and see where it leads you. Or; do simple things like find out how to code an email sending scripts and modify it to suit your needs using stuff you find on google... Only way to learn is by actually doing it, you can read all the books and ebooks out there, but if you don't do it for yourself you will never understand. The first place to start is always the same.. Say Hello World... and build from there... My first course on PHP started here :<?phpecho "Hello World";?>... then move on from there.<?php$iteration = "Hello World";echo $iteration;?>Or you can pass HTML and POST values<?php //IF the username has not been submitted, display the form;// Notice statements (if, else) are encapsulated by { }// Where $_post is the action method and ['user'] is the value of input "user" if ($_POST['user'] == ' '){ //<- this states that if $_POST['user'] is blank then return what follows (the HTML Form).?><form action="./" method="post"><input type="text" name="user"><input type="submit" Value="Login"></form><?php } //or else say Hello to User.... else {$user = $_POST['user'];echo "Hello ".$user." Welcome!";} ?></body></html>Start simple and work your way up to the Big Leagues... Class, Functions, includes, MySQ, etc.... Edited November 4, 2013 by Krönik Karbon Link to comment Share on other sites More sharing options...
Guest chaos Posted November 4, 2013 Share Posted November 4, 2013 Zend php 5 Link to comment Share on other sites More sharing options...
Checking_out 1 Posted November 19, 2013 Share Posted November 19, 2013 https://phpacademy.org/ (1 out of 200 videos)Just google "PHP for beginners", and find a site if you prefer reading, or a video set if you prefer videos. yes imma +1 this is where i learned php this is a very helpful website 1 Link to comment Share on other sites More sharing options...
Checking_out 1 Posted November 22, 2013 Share Posted November 22, 2013 ill be taking web team coding interns add checking_Out on skype if you are interested Link to comment Share on other sites More sharing options...
s4m 0 Posted November 23, 2013 Share Posted November 23, 2013 Marco.Tabini.PHP.Architects.Zend.PHP.5.Certification.Study.Guidechaos are you after something like that? Link to comment Share on other sites More sharing options...
Recommended Posts