Thank you Iyeru,
Sorry if my question was vague, I'm looking to learn how to code templates (web designs), but right now like only simple HTML and CSS, and creating tables, etc.
Any places I can learn how to do that?
This is what I want to learn to do.
if your using a script with a templating engine, none.
But both phpBB3 and IPB 2 have templating engines, and you still may need to know that stuff.
Johnn said:You'll need to get familier with the scripts syntax
What language will I need to know if I wanted to design/create my own script? Something like a control panel, or a billing system?
<html>
<head />
<body>
<form action="index.php"method=POST>
Username: <input type=text name=user><br />
Password: <input type=password name=pass><br />
<input type=submit value="OK!"><p>
</form>
<?php
$user=$_POST('user');
$pass=$_POST('pass');
if (($user==".Joe. && ($pass=="MyPass")) echo "Access Granted"
else echo "Access Denied!";
?>
</body>
</html>
You talked earlier about creating a control panel. You'll need to be doing incredibly advanced stuff for that.