[PHP] Getting form name

2005-03-22 Thread j kensler
I'm trying to get the name of a form. I tried the following code, but I guess the data in $_POST only contains data on the form elements that go inside the form tags, but not info from the form tag itself. Any suggestions on how to get the form name? ? foreach ($_POST as $key=$value) { echo $key

[PHP] SSI and PHP

2004-10-13 Thread j kensler
I've got to use some server side includes (and some SETs). And PHP is set up as a CGI program. If I include the php page from the .shtml page, the php page cannot receive queries. .php files are not set up to process these includes. And of course virtual(), etc. do not work because PHP is set

Re: [PHP] Session Variable Security

2004-09-30 Thread j kensler
The first thing to do is to set your scripts to not allow session handling to be carried out through the URL if a person's browser won't accept cookies. It would be way too easy to change the ID. And also if the id numbers are sequential, you might also want to have a second, random identifier

Re: [PHP] Zend PHP Certification test

2004-09-30 Thread j kensler
Time since last post to this list On Thu, 30 Sep 2004 18:56:56 -0500, Matt M. [EMAIL PROTECTED] wrote: This is just too easy: The shown times are posting-times for one day on this list, for posts regarding mysql. ah ha. could also be unsubscribe emails -- PHP General

Re: [PHP] Zend PHP Certification test

2004-09-30 Thread j kensler
1:11 1:15 1:19 1:26 1:27 1:28 1:30 1:34 1:42 1:46 1:47 1:48 1:52 2:10 2:12 2:14 2:16 2:18 2:20 2:26 2:30 2:34 2:41 2:48 3:08 3:10 3:12 3:14 3:16 3:18 3:26 3:27 3:30 3:34 3:41 3:44 4:11 4:15 4:16 4:18 4:19 4:23 4:24 4:28 4:30 4:32 4:34 4:36 4:40 4:41 4:42 4:47 4:51 5:08 5:10 5:12 5:16 5:18 5:20

Re: [PHP] Zend PHP Certification test

2004-09-30 Thread j kensler
I have the first part figured out. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend PHP Certification test

2004-09-30 Thread j kensler
The code is: j896c5kk.fi7/ d89635bb -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Class PHP4 problem

2004-09-29 Thread j kensler
Try adding function getQuery() { return $this-query; } to the first class, then in the second class, replace $query with $this-getQuery() Like I have below. On Wed, 29 Sep 2004 17:08:49 +0200, kioto [EMAIL PROTECTED] wrote: ?php //db_class.php error_reporting(E_ALL); class Db_Connect

Re: [PHP] Zend PHP Certification test

2004-09-29 Thread j kensler
How long is the Zend certification 'good' for? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Any idea how to automatically post to http authentication?

2004-09-21 Thread j kensler
I'm trying to create a php page that automatically posts data to several other webpages (to log in). However one of the pages is using some sort of CGI HTTP authentication. Is there any way that I can see what the names of the fields are (such as user or username or whatever). And also is there