OMG! I ahav never seen such as list of questions this big before! Anyway I will try to awnser a few questiosn for you. [b]1. When working with php what is the quickest way to learn, I don't know if I will master all the tags, hopefully I will, but I understand the concept of if, while, and, looping, and other related statements, but not how to use those and principles to write out my own programs, I can't even validate forms myself, actually haven't even yet, I want to master these things, what are the best steps for me to do that, I have went through every tutorial online that could be found and www.php.net manuals. And this site. and the php and the faqs website as well, and no luck, I am learning slowly week by week, but I want to start a full fledged career soon, I will always study new things, but I need the basics.[/b] To get started with PHP look at online tutorial sites such as w3schools.com to get the real basics. Once you have learnt the basics at w3shools.com (make sure you run the examples too). Try to create something out of what you have learnt. You should be able to create someting even its someting that sounds dumb but its a start everyone starts somewhere. When I started PHP I first created a guestbook, however I learnt how to create one first by running through a turorial. I then created my very own guestbook from scratch from what I learnt from learning the Basics of PHP and creating the guestbook. If you get stuck search the manual over at www.php.net. Another way of learn PHP, which most people prefer to do is to download a premade script and play around with it. ALso dont just rely on online tutorials get out there into a libary / book store and have read through a good PHP book. Such as [b]PHP 5 for Dummies[/b] [b]4. When should I use database driven websites and when should they not be database driven should every website I do, have every single page database driven, or should I do the special tasks database driven, like login names, and log in related stuff, or stuff like big search functions, and guestbooks, and forums and things of that nature,. 5. Should forms be database driven themselves[/b] You should only need to create a database driven site when your site requires dynamic content, such as a guestbook will require a database to keep track of the entries vistors have made about a site. You shouldn't use a database to show a login form for example, unless you have all your templates stored in the database for truely dynamic site. Forms shouldn't be database driven no, however the data that is collected from the forms can be stored in database, a flat file database or to be used in general. [b]6. I know that I want to learn how to process forms with php, and how to validate them, but I have heard it's better to use javascript to validate, and php to process. Or asp whichever server side you are using, I heard it's best to use javascript to do the validating. is this true or should I do both with php.[/b] Yes I would say use javascript for form validation as javascript can permit a form being submitted if a required form field is not filled in or there is an error in one of the form fields. PHP on the other hand can do the same (accept permit a form from being submitted) but it can be slower. [b]7.After I master php, will it be very easy for me to do tasks when given, or build websites then using jsp, asp, cf, or am I going to have to learn all those languages as well, or is it the exact same thing just different sintax and once I get the right idea down, then the rest falls into place.[/b] There are lots of different web programming langauges out there. If you are to provide a service such as you creating websites for people don't overload yourself with lots of programmiung languages chose one langauge that you are compfortable with, one that is easy to use, cost efficent etc which PHP is. JSP, ASP, CF etc are alot more difficult to use and can be quite costly. [b]8. IF that's the case then why do people who know for instance asp, why don't they say they know jsp, php as well because they might as well know all if they know one if this is the proper case.[/b] Web Programming Languages can differ dramatically as I have only PHP I cannot comment on ASP or JSP. However these three lanaguages are completely different. [b]12.Can I create a php file, and save it with a .htm, or .html extension and it still be good or the same effect if so what would be the point, is the .htm or html, or the .php better.[/b] You can code PHP in a .htm or .html file but your server must be configured to parse .html files as PHP. Webhosts will only allow .php files for PHP, .html for CSS/Javascript etc. [b]13. What is the difference between .html, and .htm, I always use .htm as default is that the best choice, or should I use .html. As a permanent complete resolution for all things.[/b] There is no difference between .html and .htm file extensions but .html never used to exist. the .htm extension was used on OS that could only allow upto three letters as their file extensions. This changed since Windows 2000 as OS could use extensions more than three letters. This is why there is far more three lettered extensions, such as .doc, .txt, .inc, .xls, .pdf etc. compared to four lettered file extensions. [b]14. What is shtml.[/b] SHTML is HTML on steriods. Well not really but it allows you to stuff like inlude other HTML files in to .shtml document or to should the time other stuff. But SHTML is only limited certain functions. It is rarely used. [b]16. Should I stay away from php 5 for awhile longer, I was told it has a lot of bugs, and isn't good to use it's functions right now until in the future, should I not use it.[/b] Who told you that! That is not true! Although PHP5 did have it problems when it was first released. However this has been corrected and fine to use. But unfortuanly many webhosts have not upgraded their versions of PHP (PHP4) to the newer version. So if you are planning on creating a dynamic website for a client before you go a head and create their site for them you will need to check that their hosting account supports PHP and what version the server has, however 90% of the time it'll be PHP4 only a handfull of hosts have PHP5. If they have PHP5 then it doesn't matter whether you code in PHP4 or 5 as PHP5 is backwards compatible. [b]17. Are there any cross browser issues when relating to server side scripting like php, jsp, or asp, or does all php work in all browsers, and all jsp, and all asp, work in all browsers, if this is not true, then what do I have to do with php to make sure I follow all guidelines to make sure it's as close to browser compatible as possible. IF someone is using internet explorer or firefox version 1( I know it's a 1 in a million) would they be able to see all php and asp as well as someone using a new browser, or do certain browsers not use certain server side languages. I have never heard anything about browser compatibility when relating to something like server side scripting.[/b] Well PHP, JSP, ASP is a server side language meaning it runs of the server and not the browser. The only thing you should worry about with cross browser compatibility is your HTML, CSS and Javascript as these are Client side lanagues (meaning these are run of the clients computer and not the server it self). Any server sided lanague shouldn't show the true souce (your PHP code) when viewed in the browser by going to view -> source but only the output which will be your HTML/CSS or Javascript. This what happens when you request a page on website that is a php file. User click link to see products (products.php) [b]>[/b] browser sends request to server for a file called products.php [b]>[/b] The server checks to see if the file ends in .php prefixif it does it'll send it to the PHP Intepreter [b]>[/b] PHP Intepreter parses the PHP code and returns the output (list of products) to the server [b]>[/b] Server returns the list of products to the browser [b]>[/b] Browser parses the list of products and displays then to the user. [b]19. If I learn really good graphic arts, where I can create logo's banners, and everything else, plus finish mastering xhtml, css, javascript, php, asp, jsp, coldfusion, sql, it's variations. Where do I go from there, is there anything else I can learn that will help, is there anywhere else I can go to learn more, are there any other languages I should start on after that.[/b] You dont need to learn every single web progrommaing languages under the sun. I would recommend you to learn HTML and CSS pretty well these are the only two languages that are important for creating a site that looks good in any browser. Secoundly consentrate on another langauges or two which is server sided sich as PHP and MySQL and thats your lot! If you where to learn all the web programming lanagues under the sun it'll take you years to master them you cannot just pick up a lanaguage, click your fingures and say "hay presto!" and be a wiz at that lanaguage. [b]20. I have heard of ajax, what are it's purposes and reasons for being, are there any reasons for it, and if so, why have I never heard about it from a client, or other web designer, I have only seen it in one place and that is w3schools.com[/b] With AJAX you can create extremely rich content and display data without having to keep refeshing you browser. For a good example of where AJAX is being used go to [a href=\"http://www.forgetfoo.com/\" target=\"_blank\"]forgetfoo.com[/a]. Click on the links on the left and look at your browser loading bar you'll see it will never appear this where AJAX is really cleaver. Instead of you having to clcik and link and then wait for your browser to refresh the page instead AJAX tacks the back door aproach. It request for the page in the background. For more information on AJAX have a read about it over at [a href=\"http://en.wikipedia.org/wiki/AJAX\" target=\"_blank\"]wikipedia.net[/a]. You wont really get any think from a client reqesting their site to feature AJAX as, well they won't have a clue what it is. [b]22. What is the height of php knowledge, how will I know when I can say I have mastered php.[/b] I have being using PHP for about 2 years now and I'm still learning but I have not mastered it as I havn't learnt every single function, configuration setting or developed enough apps to be a master. No one can really say they have mastered PHP. [b]23. How long will it take for me to be able to do my own stuff in php without a lot of checking back with the references.[/b] You are always going to be finding yourself winging your way back to php.net or some help forum or even a book for help with PHP even if you are deserted on some island miles a way from any where. I have done it loads of times sitting in front of my computer screen pulling my hair out asking myself Whats that function called again? How did I do that? Why aint this working?, How can I do/this/that and the other? [b]24. Are there multiple ways to do each thing with server side languages, for instance, with php I see there are like 100 differnet people that create 100 different sets of coding to validate and process forms, does that mean there are different ways to do different things, again meaning there are not just 1 specific way to process forms, but actually many, and if so is this the same for asp, and all the others.[/b] Yes there aloads of different ways a off doing the same task, there isn't any set standard to do things. People just do what best for them and people have different opinions. This is becuase PHP is classed as a "loose" programming lanaguge. Such as an if/else statment you can do this: [code]if($var == $var1) echo "something else"; else echo "something else";[/code]or [code]if($var == $var1) { echo "something else"; } else echo { "something"; }[/code]or another style[code]f($var == $var1) { echo "something"; } else { echo "something else"; }[/code] As you can see they are the same thing but coded diffferently. PHP allows to get away with this but if you where you doing in another language such as ASP it'll probably have a right out sissy fit. [b]29. How do I use xml with xhtml, should I make it a habit of incorporating xml, into all Xhtml, along with my css, and javascript, is it something that would make me a better designer in some way. What's its purpose, what's it for, and how do I learn how to use it, is there any real significance for it's use, or is it just there[/b]. xHTML is XML. xHTML has a standard set, same goes for XML. These standards are set by w3c (World Wide Web Consortium). With xHTML all (accpet a few such as <br>) tags must be closed, all tags and attributed must be in lowercase etc. Well thats my big 2cents worth there. Scince awnsering all these questions it suddenly dawned on me that you have look at w3schools.com and going through all the tutorials there and said "I have to learn all these lanaguges to be web design". This is not the case. HTML/CSS/PHP and MySQL are the moist common.