how to change unix cmd display prompt?

I am new to to unix and I want to make my own basic shell. What is the code I can use to change the unix cmd console display? For example my unix display prompt says MyCompterName~, I want it to say WhatEverMan~

export PS1="whateverMan\w \$ "

does that still allow me to use unix regular commands too?

It just changes your prompt, you can set it in your .bashrc file in your home directory and then your setting will be applied each time you start a shell.

There are a number of special character strings available for use in the prompt string have a look at the list here http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html