Well, I'm finally found a good (and easy
) book that taught me PHP. I just got MySQL working today...I just though you'd all like to know.
CODE
<?php
function addup($a=32,$b=32,$c=32)
{
$total = $a+$b+$c;
echo("$a + $b + $c = $total");
}
?>
<html> <head> <title>Function Arguments</title> </head>
<body>
<h3><?php addup(8,16,24); ?></h3>
<h3><?php addup(8,16); ?></h3>
</body> </html>
Well... you know more than me about it....
*Good thing this is garbage thread*
Do you know any html... I assume so, I'm just wondering.
I am very good at HTML and CSS, PHP is the next level (for me).
rock on...I'm learning C#. I used to know CSS pretty well, and if I think about it I could probably remember it but I haven't needed to use it in awhile, so I lost all my knowledge.
C# is such an obsolete language....
Omg... you bought a book? Books are like stupid. I bought a few books and they are just a waste of money. Anything you could possibly want to know, you can find online. You can find ebooks or just help sites. www.php.net or www.phpfreaks.com for the main manual. Besides showing you how to print "Hello World", books don't get too much in depth.
Was it the book with the llama on the cover?
EDIT:
Wait nevermind, that was the guide to Perl. Silly llamas.
OMFG YOUR LEARNING PHP I DON'T GIVE A CARE!!!
Well Rexy, I'm not going to lie to you and say that I'm a php god, but I know my way around php so if you need any help, contact me

I quit programming

Hehe, you got the
"PHP in easy steps"
didn't you?
That codes in there, i'm pretty sure.
Also:
48
72