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(c = 0; c < 5; c++;)
{
makevar("temp.var" @ c + 1) = params[b];
temp.pm = params[c];
temp.pm[c] = temp.pm[c+1];
temp.pm[c+1] = makevar("temp.var" @ c + 1);
}
What's the difference between these two?
If I replace them why won't it work?