PDA

View Full Version : memberlist.php modification


izz
02-23-2003, 03:44 AM
hello
Members of my forums use English and Arabic letters in their names.
For memberlist.php to show the english and arabic letters list, I have added the following loop:

for ($i=193;$i<224;$i++) {
$letter = chr($i); $linkletter = $letter;
if ($ltr==$letter) {
eval("\$letterbits .= \"".gettemplate("memberlist_letterselected")."\";");
} else {
eval("\$letterbits .= \"".gettemplate("memberlist_letter")."\";");
}
}
I have noted that most of arabic letters in the ASCII table are between 193 and 224, but there are missing letters, I wish someone knows the exact start and end of Arabic letters.

This is not my main question, my question is: Where to put a "<br>" string to make the arabic letters come in a separate line?

Regards

Xenon
02-23-2003, 10:04 AM
$letterbits .= '<br>';

should be before the arabian loop

izz
02-23-2003, 10:27 AM
<br> didn't work
I discovered that the loop is making table cells
so I added this line of code:

$letterbits .= '</tr><tr>';

and it is working now

You can see it here:
http://wahat.sahara.com.sa/memberlist.php?s=

Thanks for your response any way

Xenon
02-23-2003, 11:27 AM
hmm, very intresting memberlist screen: ^^


Problem Report
Access denied to system because of URL Filter Configuration.

Message ID
FILTER_DENIED

Problem Description
Your system was configured to deny access to the requested URL.

Possible Problem Cause
Request denied, as specified in the local filter list configuration.

Possible Solution
Contact your network support team if this problem persists.

izz
02-23-2003, 11:36 AM
where did you see the problem and when??
I didn't see it?

Xenon
02-23-2003, 06:48 PM
when? look at the time of my post ;)

it works now.
yeah, looking good your memberlist now :)