php-windows Digest 24 Nov 2003 03:05:13 -0000 Issue 2013

2003-11-23 Thread php-windows-digest-help
php-windows Digest 24 Nov 2003 03:05:13 - Issue 2013 Topics (messages 22169 through 22176): filepaths in a db 22169 by: Anthony Ritter Re: Password Protecting 22170 by: Nik 22171 by: Nik 22176 by: Nigel Jones Changing URL 22172 by: Nik 22173

RE: [PHP-WIN] Password Protecting

2003-11-23 Thread Nigel Jones
Ok 1)You can't MD5 Crypt the Pass before leaving the server there might be some fancy way of sending a file signed by pgp keys and then using the Private Key to decrypt it and reading the pass but that is a 'stupid' way also highly time consuming. 2)If you want to password Secure Something, have y

[PHP-WIN] Online Polls

2003-11-23 Thread Nik
OK! now I am attempting to develop a small online polling system. I set up my tables and html pages. However, I don't seem to understand how to update the information in the polling system. I know how to update using sql but something about this polling system I don't understand. This is my code be

Re: [PHP-WIN] Changing URL

2003-11-23 Thread Nik
Thanks "Bmay" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Nik wrote: > > >OK Guys, > >It's me a again. My problem now is when I click the submit button, the URL > >to my php script file is being displayed. That is I have a script doing some > >validation, and when the user click

Re: [PHP-WIN] Changing URL

2003-11-23 Thread bmay
Nik wrote: OK Guys, It's me a again. My problem now is when I click the submit button, the URL to my php script file is being displayed. That is I have a script doing some validation, and when the user clicks the submit button if there is error in the way the entered their information my url chang

[PHP-WIN] Changing URL

2003-11-23 Thread Nik
OK Guys, It's me a again. My problem now is when I click the submit button, the URL to my php script file is being displayed. That is I have a script doing some validation, and when the user clicks the submit button if there is error in the way the entered their information my url changes to match

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Nik
To use the MD5 hashing you do "MD5('variable_name'). Nik "Donatas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How do you MD5 it before sendig out to server? Is that possible on the > user side? I guess not... > > Piotr Pluciennik wrote: > > >Your form is set to GET mode. Your

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Nik
Thank you. Also I am already using the MD5. Once again. Thanks NIk "Piotr Pluciennik" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Your form is set to GET mode. Your form should work in POST mode. > Think also to MD5 your password before sending over internet. > > HTH > Piotr > >

[PHP-WIN] filepaths in a db

2003-11-23 Thread Anthony Ritter
Greetings all, I'm looking for a tutorial or some assistance in explaning how store and then open and read a binary file using php/mysql. I've got a few tutorial about storing the binary data within a mysql table from Kevin Yank, phpbuilder, etc. but I've heard that it's sometime better to keep yo

php-windows Digest 23 Nov 2003 14:52:10 -0000 Issue 2012

2003-11-23 Thread php-windows-digest-help
php-windows Digest 23 Nov 2003 14:52:10 - Issue 2012 Topics (messages 22163 through 22168): Re: Password Protecting 22163 by: Piotr Pluciennik 22164 by: Donatas 22166 by: Svensson, B.A.T. (HKG) setting cookie problem 22165 by: Muhammad Imran 22167 by:

[PHP-WIN] Help with split page

2003-11-23 Thread Lawrence
I have 50 products , I want to display 10 products per page , if I use LIMIT , I will make 5 links , but I want the code will make 5 links automatically for me , I do not know how to do , anyone can help me , thank you ".$row["name"]." ".$row['pri

[PHP-WIN] Re: setting cookie problem

2003-11-23 Thread Bas
"Muhammad Imran" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Whever I try to set the cookie I get error message (below), what can be the problem. I am setting the cookie in and thier is no output(echo) tags before this. Please help me. Warning: Cannot modify header information

RE: [PHP-WIN] Password Protecting

2003-11-23 Thread Svensson, B.A.T. (HKG)
If security is an issue, then HTTP should not be used to transport the HTML request at all, but rather HTTPS. The HTTPS session should be initiated with the login page, and then it is up to the key strenght and local browser settings to ensure whatever security and integrity needed. In any cases,

[PHP-WIN] setting cookie problem

2003-11-23 Thread Muhammad Imran
Whever I try to set the cookie I get error message (below), what can be the problem. I am setting the cookie in and thier is no output(echo) tags before this. Please help me. Warning: Cannot modify header information - headers already sent by (output started at /www/cookie_test/cookieCount.p

Re: [PHP-WIN] Password Protecting

2003-11-23 Thread Donatas
How do you MD5 it before sendig out to server? Is that possible on the user side? I guess not... Piotr Pluciennik wrote: Your form is set to GET mode. Your form should work in POST mode. Think also to MD5 your password before sending over internet. HTH Piotr Nik wrote: Hi Guys 'n' Gals My lo