View Full Version : having problems removing values from an array
AN-net
11-21-2005, 06:34 PM
ok im trying to remove values from an array after processed but it isnt working>_<
here is the code:
$unsetname= trim(strtolower($user['username']));
unset($viewers[$unsetname]);
Marco van Herwaarden
11-21-2005, 10:13 PM
Use = null.
You can not unset a single array element i think
AN-net
11-21-2005, 10:27 PM
according to PHP.net you can>_> http://us2.php.net/unset
also could you explain further "Use = null" thing.
akanevsky
11-21-2005, 11:48 PM
Yes, you definitely can unset a single array element.
A likely reason for your problem is a mistake in your code.
However, it is impossible to tell what the mistake is unless you post your whole code.
AN-net
11-22-2005, 12:01 AM
nvm found it, i had to make the array associative instead of keyed:)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.