[PHP-WIN] How do I prevent double posts? > Using CURL + Authorize.NET

2003-07-10 Thread Matt Babineau
I have a CURL+Authorize.net solution in place, how can I prevent double posts to authorize.net when I post the payment info to the page? What are some good solutions you have in place? Thanks, Matt Babineau www.criticalcode.com e:: [EMAIL PROTECTED] p:: 603.943.4237

Re: [PHP-WIN] Windows Security Updates Problems

2003-07-10 Thread Sheldon Quinton
Thanks Antonio, the little things always get ya! "Antonio M Delacruz" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I ran into the same problem on windows 2k server. I found that it was my code. Specifically, a space. I had defined a value for a variable that handled a SID to perf

RE: [PHP-WIN] Windows Security Updates Problems

2003-07-10 Thread Delacruz, Antonio M [ITS]
I ran into the same problem on windows 2k server. I found that it was my code. Specifically, a space. I had defined a value for a variable that handled a SID to perform an oracle connection from my php page. I stumbled upon the space and everything worked like a charm. i.e. $var = " (sid info

[PHP-WIN] Windows Security Updates Problems

2003-07-10 Thread Sheldon Quinton
I am running php 4.3.2 as service module on IIS 5.1 with Windows XP Pro. It stopped working after 2 windows security updates (817606, 823559) today. I recieve a CGI error "No Headers Sent" and the browser displays nothing. PHP runs from the command line and I have checked security permissions o

php-windows Digest 10 Jul 2003 20:15:50 -0000 Issue 1819

2003-07-10 Thread php-windows-digest-help
php-windows Digest 10 Jul 2003 20:15:50 - Issue 1819 Topics (messages 20758 through 20769): mssql 20758 by: Alain ROMERO 20759 by: Miha Nedok checkboxes in php 20760 by: Harpreet 20761 by: Stephen March 20762 by: Luis Moreira 20763 by: Luis Mo

[PHP-WIN] df

2003-07-10 Thread Sheldon Quinton
dsd -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] need help with sessions

2003-07-10 Thread Donatas
Thanks Luis, I had this idea in mind, but still... maybe someone knows a way how to achieve same effect without using JavaScript? Not that I don't like it but that there should be some way. PS. Your english is just as great as mine :D -Original Message- From: Luis Ferro [mailto:[EMAIL

Re: [PHP-WIN] need help with sessions

2003-07-10 Thread Luis Ferro
One of the things that can be happening is that the server is sending the "location:" before the session data in the header... and when the browser gets it, simply forgots the session data. I'm not sure of in which version of PHP there was a problem like the one i'm describing, but i remember v

RE: [PHP-WIN] checkboxes in php

2003-07-10 Thread Charles P. Killmer
When submitted this will create an array in PHP. This is the output of a test run Array ( [0] => 3124 [3] => 45 [4] => 6756 ) Notice the indexes. while (list ($key, $val) = each ($temp)) { echo "$key => $val\n"; } Charles -Original Message- From: Luis Moreira [ma

[PHP-WIN] need help with sessions

2003-07-10 Thread Donatas
First some data about my setup: PHP 4.2.3 (I bet nothing has changed till PHP 4.3.2 regarding sessions) running on Windows 2K server My PC: Windows 98 SE Browser: IE 6.0.2600. Now, the problem occurs when using sessions and header ('Location: ...'); test1.php /**/ http:

RE: [PHP-WIN] checkboxes in php

2003-07-10 Thread Charles P. Killmer
Try this '; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; //Then in PHP whether the box is checked or not your indexes are correct. print_r($temp); ?> Charles Killmer Netgain Technology -Original Message- From: Luis Moreira [m

Re: [PHP-WIN] checkboxes in php

2003-07-10 Thread Luis Moreira
Take this for an example : This script fills part of a form with checkboxes named C1,C2, ect $cnt=0; for ($i=1;$i<=$n_alunos;$i++) { if ($cnt==0) { print ""; } print "Aluno $i"; $cnt++; if ($cnt==$colunas) { print ""; $cnt=0; } } This script receiv

Re: [PHP-WIN] checkboxes in php

2003-07-10 Thread Luis Moreira
PHP passes variables it initalizes, not all. You should check if the variable is set with the "isset" function. Anyway, if you want. post your code, and I'll take a look at "line 27", wich should be referring to an "array element" corresponding to a non-selected checkbox. Luis - Original Mess

Re: [PHP-WIN] checkboxes in php

2003-07-10 Thread Stephen March
Could you please post your code?It's a lot easier to find the problem ie: what is line 27 trying to do? Cheers, ~Steve Harpreet wrote: I have 4 checkboxes in a form. I can select any number of boxes.When i go to the results page it gives me errors for boxes i dont select Notice: Undef

[PHP-WIN] checkboxes in php

2003-07-10 Thread Harpreet
I have 4 checkboxes in a form. I can select any number of boxes.When i go to the results page it gives me errors for boxes i dont select Notice: Undefined index: toall in e:\INetPub... on line 27 Please help Regards, Harpreet -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP-WIN] mssql

2003-07-10 Thread Miha Nedok
You have to install the client libraries from the MSSQL setup CD. -Mike On Thu, 10 Jul 2003, Alain ROMERO wrote: > Date: Thu, 10 Jul 2003 14:06:20 +0200 > From: Alain ROMERO <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] mssql > > Where is mssql.dll (not include in packages 4

[PHP-WIN] mssql

2003-07-10 Thread Alain ROMERO
Where is mssql.dll (not include in packages 4.1.2 / 4.2.3 / 4.3.2 ? Thanks -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

php-windows Digest 10 Jul 2003 07:13:48 -0000 Issue 1818

2003-07-10 Thread php-windows-digest-help
php-windows Digest 10 Jul 2003 07:13:48 - Issue 1818 Topics (messages 20750 through 20757): Problem finding OCI.dll when starting Apache. 20750 by: Delacruz, Antonio M [ITS] PHP on Windows 20751 by: Delacruz, Antonio M [ITS] cookies problem 20752 by: Mark Anderson

[PHP-WIN] Subject: Re: Forms-PHP-and-errors

2003-07-10 Thread Neil Smith
jh : uklinux.net run with register globals off , as well as several other safe mode enhancements. So you will need in any case to learn how to do this properly to run on their servers. Contact me off list if you want a full rundown on their capabilities, as I have been with them 2 years and am