Can anybody give me details on what to code into a page?
Basically i am required to build a mailing list from scratch where people can subscribe and they are added to a mailing list.
What would be the php/javascript behind it?
There's actually more behind it - more MySQL. You'll need MySQL, PHP and Javascript (for UI and client-side validation)
Where do you want to began?
Simple Model: User -> inputs email -> validated via javascript -> if (true) -> submits via POST/GET -> validates PHP -> if (true) -> goes into MySQL database.
A mailing list is quite simple. You'd need to decide how you'd want to do it, but in general, you'd have a subscribe page and a post page. I am not testing this code, so it may contain flaws, but it should give you an idea of a flat-file based mailing list.
In practical implementations, you should use MySQL, validate and confirm e-mails, check for errors and so on. Also, don't forget that this does not authenticate the post page. You ideally need strong authentication to ensure your mailing list isn't compromised. Additionally know that you -must- have an unsubscribe feature - this will be easier with MySQL than with flat-file.
subscribe.php
post.php