Search found 7 matches

by Jon2003
Thu May 29, 2003 8:27 pm
Forum: Site News
Topic: Do you like the new Portal?
Replies: 45
Views: 76540

Its name is "Printable Topics".

Download:
http://www.phpbb.com/mods/downloads/ind ... ages&cat=2

Discuss:
http://www.phpbb.com/phpBB/viewtopic.ph ... =printable

Hope you will install it soon and without any problem :D
by Jon2003
Thu May 29, 2003 12:58 am
Forum: Site News
Topic: Do you like the new Portal?
Replies: 45
Views: 76540

Well done, Jason :D
May I give another wish here? I wish you to install a MOD for printing. It will be surely useful.
by Jon2003
Wed May 21, 2003 8:13 am
Forum: PHP - Code
Topic: Hiding download path
Replies: 9
Views: 1809

I have a little idea to improve situation: rename randomly the file before (easy) or after downloading. Thus, users cannot know its name for next downloading without visiting the page.
by Jon2003
Fri May 16, 2003 3:59 am
Forum: PHP - Code
Topic: Newbie: how to read and analyse a binary file?
Replies: 2
Views: 851

Excellent!!! It is enough for me now. Thank you very much :D BTW, if anyone know a better method (more effective), please let me know. For example, to get an integer of 4 bytes from the string, I have to write a look-like crazy code: $n = ord($s&#123;0&#125;)+(ord($s&#123;1&#125;)<<8...
by Jon2003
Fri May 16, 2003 3:02 am
Forum: PHP - Code
Topic: Newbie: how to read and analyse a binary file?
Replies: 2
Views: 851

Newbie: how to read and analyse a binary file?

I want to reuse my own database written in C++. A record in C++ like that: CPerson { CString name, addr; int age; Save (CArchive &ar) { ar << name; ar << addr; ar << age; } }; So far I have just learned how to read all data into string as the following code: $filename = "mydata.dat"; $...
by Jon2003
Wed Apr 30, 2003 8:25 pm
Forum: PHP - Code
Topic: Help with Imagefilled functions (call to undefined function)
Replies: 2
Views: 950

You are right, the line "extension=php_gd2.dll" fixed all my current problems. Thank you very much :D
by Jon2003
Tue Apr 29, 2003 7:44 pm
Forum: PHP - Code
Topic: Help with Imagefilled functions (call to undefined function)
Replies: 2
Views: 950

Help with Imagefilled functions (call to undefined function)

I have just downloaded the latest php yesterday (so hope the latest GD). I try some image functions such as imagecreate, imagecreatefrompng, imageline, imagefilledrectangle. They work well. However, when I try some other imagefilled such as imagefilledellipse, imagefilledarc, they don't work and the...