PDA

View Full Version : problem with fetch_avatar_url()


sabret00the
09-06-2004, 03:04 PM
is there any way to exit it?

like

kill(fetch_avatar_url());

as i have to use the same function twice and theirs now a problem which i think i can only explain with the first one is effecting the second one.

rake
09-06-2004, 08:54 PM
Lol, you can't "kill" it or "exit" it. Because it's not "running" at all.

$a = fetch_avatar_url($userid1);
$b = fetch_avatar_url($userid2);

one can't affect the other.