view tutorial
Try to rewrite the tutorial, first of all there is a savety isue (spammers can exploit it), so check http://www.combined-minds.net/tutorials/6/PHP_Security:_Sending_an_email
Second, it's very hard to follow what you're doing here, i assume this is a beginners tutorial. But ask a beginner to follow it, and they'll have big problems.
Don't get me wrong, but i think you should really edit it after reading the URL above and think some more about how to make it more easy to follow.
view tutorial
Ok, im sorry.. I might have crossed the line there.
But it's a real fact you're teaching bad practise, that's not bad when it's a little. But the whole tutorial contains it.
view tutorial
Contains much bad practise. Do not use this tutorial to learn PHP! This tutorial teaches you how to write PHP, but on a way that you need to change the way you write later. This might seem bullshit, but it's not. You won't be seen proffesional when you are showing this to the company where you want to work!
One little example:
echo "Did you know that 10 add five equals " . "$numbers";
Best way should be:
echo 'Did you know that 10 add five equals '.$numbers;
When using double quotes you need to add slashes escape double quotes, which are used often in HTML. And the dot in the first line is VERY useless for the variable is INSIDE double quotes!
view tutorial
"I'm sorry, this tutorial is not yet translated in this language. Choose another language or check it later."
Why submit a tutorial for another language? And why is it posted to the frontpage? :p




view tutorial
Spamley, you probably don't even know what Web2.0 is, so shut it ;)
It's a nice tutorial, although some extra information for the beginners would be nice.