php-windows Digest 23 Nov 2003 14:52:10 -0000 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: Bas
Help with split page
22168 by: Lawrence
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
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 login page for my user consits of a text field and a password field. when
> the user clicks submit the password is being shown in the url, can someone
> please tell me how to hide this password.
>
> Thank you
> Nik
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
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 login page for my user consits of a text field and a password field. when
the user clicks submit the password is being shown in the url, can someone
please tell me how to hide this password.
Thank you
Nik
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
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, Nik should uses POST to solve the problem
he adress with his questions. Wheather he then further
wants to protect his passwd is another matter, but Piotr
points out: hidding the passwd with the browser is merely
protecting the passwd from being read while typing it in.
For the rest "anybody" is free to snoop the TCP/IP traffic
and extract the passwd information.
-----Original Message-----
From: Donatas
To: [EMAIL PROTECTED]
Sent: 2003-11-23 09:44
Subject: Re: [PHP-WIN] Password Protecting
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 login page for my user consits of a text field and a password
field. when
>>the user clicks submit the password is being shown in the url, can
someone
>>please tell me how to hide this password.
>>
>>Thank you
>>Nik
>>
>>--
>>PHP Windows Mailing List (http://www.php.net/)
>>To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Whever I try to set the cookie I get error message (below), what can be the problem. I
am setting the cookie in <body> 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.php:3) in /www/cookie_test/cookieCount.php on line 14
Cookie data
Regards
Imran
--- End Message ---
--- Begin Message ---
"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 <body> 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.php:3) in
/www/cookie_test/cookieCount.php on line 14
Cookie data
Regards
Imran
---
You must set the cookie at the top of the page, with no extra linebreaks
before.
--- End Message ---
--- Begin Message ---
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
<?
mysql_connect('localhost', '', '');
mysql_select_db("shoppingcart");
$result= mysql_query("select * from produclist where manhom=$xp") ;
$cnt = mysql_num_rows($result);
for ($i = 0 ; $i <= $cnt ; $i++ )
{
$row = mysql_fetch_array($result) ;
echo "<tr><td align=center><img src=".$row["image"]."></td>
<td align=center><a
href=details.php?t=".($i).">".$row["name"]."</a></td>
<td align=center>".$row['price']."</td></tr>" ;
}
?>
--- End Message ---