make an automated billing system, License system anything u wnt really, n u could make a bit of $ out of it too, Up to you really.
Printable View
make an automated billing system, License system anything u wnt really, n u could make a bit of $ out of it too, Up to you really.
I Like The Forum system idea
I know you Said You Didnt Want To Make A Djp So How About A CMS?
Hmm ill see, I want to make a tad bit of money to pay my mom back.
Learn the full depths of PHP, JS etc.
I need to really learn JS. im a novice at it
Go for a really advanced CMS. Or like simon said do a forum system then build it up.
@ above LMAO!!!
Edited by opensourcehost (Forum Moderator): Please don't post pointlessly.
Or...
PHP Code:<?php echo("Hello world!"); ?>
or just add the space :rolleyes:
Also, if your gona put it in an html document, yours is still invalid since it lacks the head section or doc type decoration?PHP Code:<?php echo "Hello World Im Conor"; ?>
PHP Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>hello</title>
</head>
<body>
<?php
echo "Hello World I am Conor";
?>
</body>
</html>