ID:184024
 
I just got php and i was wondering if there are any GOOD tutorials out there?
http://www.php.net is probably still the best place to find what you need.
http://codewalkers.com/ is my favorite website for php tutorials. They tend to be very specific, but PHP is so simple that those skills will go a long ways. After that, php.net will get you were you are going. Their documentation is second only to BYONDs.
In response to Danial.Beta
I'd call BYOND's documentation second to PHP's. PHP's documentation blows our's away.
In response to Nadrew
I just think that BYOND's documentation is really easy to navigate. Sure, theres is more advanced, but it tends to take a lot of time to find exactly what you want when you don't know, but on BYOND's I have never had that problem.
In response to Danial.Beta
now i have an error in one of my pages *sigh*
how do i insert css into a php file i tried and my MySQL server gave me this error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<style type = "text/css">
BODY
{
scrollbar-face-color : #0000
In response to Upinflames
You could include a file that has the CSS in it ie a .css file .php .html whatever.

<?php include 'CSS.css';?>
In response to A.T.H.K
oh ya i forgot that function thx :)