RSS Forums RSS
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 661 | Replies: 3
Reply
Join Date: Nov 2005
Posts: 44
Reputation: Brims is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
Brims Brims is offline Offline
Light Poster

operations

  #1  
Mar 27th, 2007
hi there i am developing a website, where users can register to become members however, i have to write operations how the system will add a user, I have been told to do it in psuedo code, but i dnt know psuedo code. is there any other way this can be done,

the ad user fields are Forname, Surname, Email, Password

I would appreciate if someone could show me how to do this so i can do the rest
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Oct 2006
Location: Beijing
Posts: 30
Reputation: VanPetrol is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
VanPetrol VanPetrol is offline Offline
Light Poster

Re: operations

  #2  
Mar 27th, 2007
Pseudo code (as far I know) is basically like this:
 
If the user did not enter his name
  Warn user by message box
  Focus on name textbox
  exit the method
If the user did not enter a password
  Warn user by message box
  Focus on password textbox
  exit the method
 
Try to connect to database
If connection to database fails
  Show error in messabox
  exit the method
I used to write things like this...paste it into my code editor, once I'm happy, and then use it at comments with the actuall valid code following each line.
Last edited by VanPetrol : Mar 27th, 2007 at 11:43 am.
If you want to use CSS to design Web sites you can't do it in a half-baked way. You are in or you're not in. - Charles Wyke-Smith
Reply With Quote  
Join Date: Mar 2007
Posts: 17
Reputation: justinm is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 0
justinm justinm is offline Offline
Newbie Poster

Re: operations

  #3  
Mar 28th, 2007
Originally Posted by VanPetrol View Post
Pseudo code (as far I know) is basically like this:
 
If the user did not enter his name
  Warn user by message box
  Focus on name textbox
  exit the method
If the user did not enter a password
  Warn user by message box
  Focus on password textbox
  exit the method
 
Try to connect to database
If connection to database fails
  Show error in messabox
  exit the method
I used to write things like this...paste it into my code editor, once I'm happy, and then use it at comments with the actuall valid code following each line.


in code...

if(empty($_POST['username'])){
echo "Sorry, you need to enter a username."; //do focus here exit();
if(empty($_POST['password'])){
echo "You need to enter a password."; // do focus here exit();
if(mysql_connect('shizz','nizz','wizz')){
"Success!";
}else{
die("sorry, no connection!");
}

something like that really...
Reply With Quote  
Join Date: Oct 2006
Location: Beijing
Posts: 30
Reputation: VanPetrol is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
VanPetrol VanPetrol is offline Offline
Light Poster

Re: operations

  #4  
Mar 28th, 2007
This might help clear things up a bit
If you want to use CSS to design Web sites you can't do it in a half-baked way. You are in or you're not in. - Charles Wyke-Smith
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 5:40 am.
Newsletter Archive - Sitemap - Privacy Statement - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC