Thread: Help
View Single Post
  #17  
Old 09-20-2002, 10:12 AM
Graal2001_NAT Graal2001_NAT is offline
Registered User
Join Date: Sep 2002
Posts: 241
Graal2001_NAT is on a distinguished road
Quote:
Originally posted by emortylone
Okay, I must admit I am QUITE confused. Are you saying functions aren't able to use vars?!?! What is the point of vars that ONLY can be read and edited by functions? It shouldn't matter because if you have a this.var and the only thing that modifies it is the functions, it works out. I guess I must be missing what you guys are saying...
---Shifter
in php and other programming languages(i think c and c++ as well) there are things such as params, like in php

function(showing,stuff);
if i called that and the function name was

function($1,$2){
echo "$1";
echo "$2";
}
it would display this


showing
stuff
__________________
GONE, BAI
Reply With Quote