|
|
|
|
|
|
|
|
|||||||
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#2 |
|
Aw, Dad, you've done a lot of great things, but you're a very old man, and old people are useless
Join Date: Sep 2008
Posts: 28
|
Oops, I just realised I made a wee error in the links.php script above.
Replace this part: Code:
// Reorder the array keys
foreach($lines as $l) {
$lines[] = $l;
}
Code:
// Reorder the array keys
$lines_temp = $lines;
$lines = array();
foreach($lines_temp as $l) {
$lines[] = $l;
}
|
|
|
|
|
|