View Single Post
  #1  
Old 05-30-2008, 06:37 PM
Stryke Stryke is offline
Scripter
Join Date: Apr 2008
Posts: 157
Stryke is an unknown quantity at this point
What's the difference between these two?

PHP Code:
temp.var1 = array[b];
temp.var2 = list[b];
temp.var3 blol[b];
temp.var4 blob[b];
        
array[
b] = array[b+1];
list[
b] = list[b+1];
blol[b] = array[b+1];
blob[b] = list[b+1];
        
array[
b+1] = temp.var1;
list[
b+1] = temp.var2;
blol[b+1] = temp.var3;
blob[b+1] = temp.var4
PHP Code:
for(05c++;)
{
  
makevar("temp.var" 1) = params[b];
  
temp.pm params[c];
  
temp.pm[c] = temp.pm[c+1];
  
temp.pm[c+1] = makevar("temp.var" 1);

What's the difference between these two?
If I replace them why won't it work?

Last edited by Stryke; 05-30-2008 at 11:28 PM..
Reply With Quote