QUOTE(ziburgos27 @ 23 Aug, 2008 - 12:58 PM)


Hi I am Ivette I just started to study web desing after a 25 year career as a paramedic I am having fun in class but this current class I am taking is quite difficult I am here seeking help.
The best way to get help here is to start your own NEW thread, then state exactly what you are working on and show how far you have gotten, then we will assist you with any errors or mis-conceptions.
TO THE THREAD STARTER.
Psuedo - Code comes before the writing of code, and is a simple list of what you are trying to build a program to do.
For example, If I wanted to write a checkbook program, I would begin with PsuedoCode such as this
Check database for current value in account
Store value in AccountTotal
check for new deposit
input new deposit and add value to AccountTotal
return to check for new deposit
if no new deposit then
check for new check
input new check number and subtract value from AccountTotal
return to check for new check
if no new check then
check for cash withdrawl
input cash withdrawl and subtract from AccountTotal
return to check for cash withdrawl
if no new cashwithdrawl then
display AccountTotal
record AccountTotal to database
End
Simple psudeo just means stating the step need to write a program, from this it becomes easy to write code in any programming language, simply by converting each step into appropriate code blocks.
Starting from someone else's finnished code will not always provide a true psuedo-code layout
Don't think about programming, think about how YOU would accomplish the desired task and simply break it down into single seperate steps.