Thread: Forum help
View Single Post
Old 12-17-2007, 05:43 PM   #4 (permalink)
hostfreak
The Wanderer
 
hostfreak's Avatar
 
Join Date: Oct 2007
Posts: 21
Thanks: 1
hostfreak is on a distinguished road
Default

Quote:
Originally Posted by Tanax View Post
But then every thread id and etc, will be on the same array..index or w.e it's called :S
Tanax, that is incorrect. From the php manual:

PHP Code:
<?php
$arr 
= array(=> 112 => 2);

$arr[] = 56;    // This is the same as $arr[13] = 56;
                // at this point of the script

$arr["x"] = 42// This adds a new element to
                // the array with key "x"
                
unset($arr[5]); // This removes the element from the array

unset($arr);    // This deletes the whole array
?>
As you can see, with the square-bracket syntax, each key value will be different; it will be incremented one above the previous value.
hostfreak is offline  
Reply With Quote