[PHP] PDFLib to generate 2+ page with same content

2001-09-06 Thread Norman
, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Advogato metric

2002-08-09 Thread David Norman
Has anyone written or seen the Advogato.org trust metric implemented in PHP? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] calc.php missing in cvs

2002-06-12 Thread David Norman
I checked out the version of Date by Baba, but I don't see Calc.php in the Date subdirectory on cvs.php.net. David Norman - deekayen http://atthat.com/ __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup

[PHP] upload file size

2002-07-05 Thread Norman Zhang
Hi, I can't seem to upload file bigger than 5M even if I set the upload_max_filesize to 20M in php.ini and MAX_FILE_SIZE to 20M in the script. What's am I missing here? Is the temporary upload directory won't handle file this size? Please give me some pointers here. TIA.

Re: [PHP] upload file size

2002-07-08 Thread Norman Zhang
"Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Saturday 06 July 2002 10:04, Norman Zhang wrote: >> > > I can't seem to upload file bigger than 5M even if I set the > > upload_max_filesize

[PHP] Re: GD Lib

2002-07-08 Thread Norman Zhang
Check out http://rpmfind.net/linux/rpm2html/search.php?query=php-gd&submit=Search+...&; system=&arch= "Yang" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > can't find the php-gd.so on my computer. > -- PHP General Mailing List (http://www.php.net/) To u

[PHP] Evolution syncing

2003-09-29 Thread David Norman
I telecommute, so I want my coworkers to see what I have on my plate and add to my project list. I figured syncing the Evolution calendar and task list with a PHP-based site would be good. Then I could make a few scripts for my boss to run reports on my timesheet and such. Is there a project do

[PHP] php-gtk compile prob

2002-01-03 Thread David Norman
I've been trying to compile php-gtk on slack 8 with php 4.1.1. I've tried CVS and 0.1.1, but I get the following during make whether I use ./buildconf or phpize: gen_gtk.c:1: parse error before `:' I looked at ext/gtk+/gen_gtk.c, and there is one line: usage: php -q generator.php [-o overridesf

[PHP] Sessions just not working...

2002-02-14 Thread Norman Cates
SION_VARS["notesType"] returns all //Call the page with page.php //Read $HTTP_SESSION_VARS. It's empty. It should return ALL I do have register_global set. And I do have track_vars set. But even reading the comments on the above page, nothing will work. It will not persist with

Re: [PHP] session_is_registered

2002-04-16 Thread Norman Zhang
Sorry. I'm still getting empty output. Are there some global variables that I must set in php.ini? phpinfo() tells me that I have register_globals off Session Support enabled session.auto_startoff session.cache_limiter nocache session.cookie_secure off Regards, Norman &q

[PHP] Re: session_is_registered

2002-04-17 Thread Norman Zhang
Thanks everyone. I solved the problem by upgrading 4.0.6 to 4.1.2. Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] difference between $foo and isset($foo)

2002-04-18 Thread Norman Zhang
in $foo cannot be null? Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] header redirection

2002-04-19 Thread Norman Zhang
Hi, I use header(location: ...) for redirection to another page. But I also want to include , and tags in the other page. Is there a way to this? Because php complains that the header already been sent. Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] header redirection

2002-04-22 Thread Norman Zhang
ocation: down.php"); die (); } else { echo "Go Away!"; echo "You are not authorized to view this resource."; die(); } } ?> down.php 0) { ?> // I want to include the default header in here again. But it does not work.

[PHP] redirection

2002-04-28 Thread Norman Zhang
of members.php. But I am being redirected to login.php no matter if members.php was called from login.php. What's proper way of implementing this? Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] date

2002-05-02 Thread Norman Zhang
Hi, I am doing a test with the date function, $mydate="2002-05-02" $tdate=date("d M Y", "$mydate"); echo "$tdate" I should expect 02 May 2002. But I get a strange result "31 Dec 1969". Why? How can I correct this? Regards, Norman --

[PHP] stop resend data

2002-05-10 Thread Norman Zhang
sable this feature like Hotmail. Would someone please give me a few pointers? Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cascading of environment variables when running a Perl script from PHP.

2002-03-21 Thread Norman Cates
xed Perl and PHP, It wuld be great to be able to integrate them a bit so that we can use Perl generated HTML inserted into a PHP page when appropriate. Any insights much appreciated. Thanks, Norman Cates -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] disable global variables

2002-04-10 Thread Norman Zhang
Hi, phpinfo() indicates that register_globals = On by default. How do I set it to register_globals = Off? Thanks and Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] update entries in a table

2002-04-12 Thread Norman Zhang
Hi, How do I update entries in MySQL? Say for example, I checked some fields to a table, and decided to make update to a particular field. How do I do that in PHP? Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] update entries in a table

2002-04-12 Thread Norman Zhang
Thank you so much. Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session_is_registered

2002-04-12 Thread Norman Zhang
Hi, If I have register_globals=off, how do I pass session variables? I tried session_register("var1"). session_is_registered("var1") appears successful, but if I tried to echo the $var1". Nothing shows. How do I pass session variables? Thanks, Norman -- PHP G

Re: [PHP] session_is_registered

2002-04-12 Thread Norman Zhang
Sorry it still does not work. Can it be because I have HEADER(Location: ...) redirection after the session_registered('var1')? Regards, Norman "Oliver Beddows" <[EMAIL PROTECTED]> wrote in message 20020412235134.QNTP29761.mta05-svc.ntlworld.com@there">n

[PHP] authentication help

2001-10-24 Thread Norman Zhang
if I have them hard coded in login.php and if authentication fails the user is directed back to index.php? Is this safe? Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To c

[PHP] directory access

2001-10-26 Thread Norman Zhang
uld like to have the script to jump into a directory if authenticates. Can this be done with a single authentication? TIA. Regards, Norman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

[PHP] other mhash hashes

2005-02-15 Thread David Norman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I thought some other people would be interested in the other hashes that you can do with mhash that aren't on the php.net docs after the recent news that SHA-1 might be weaker than previously thought: http://www.schneier.com/blog/archives/2005/02/sha1_b

[PHP] IIS,Apache

2006-04-12 Thread Norman Huasebe - TICWARE
Hi, I've been working on PHP using windows IIS as web server but now that I moved to Linux I'll use APACHE 2.x I read about and every where I see that apache improves PHP I would like to now specifics cases Can anyone help me with this, please? Anybody got a clue to lend? Than