QUOTE(manan @ Oct 19 2008, 12:47 AM)

hi admin,
in zymic control panel u must need to increase the cookie expire time, i think after 5sec it expires ... its too much disgusting, every time we login and again cookies exptre whts this

:X :X
you must take action ....
thanks.
--
Hi, Thanks for such an wonderful service for free, I need a help here.!
about cookie feature of my site.
when my login.php script run, it is supposed to setcookie for user_name and password, but it do not store so i am not able to use cookie feature of PHP as of now at zymic..
This is my script:- login.php
<?php
$User_Name=$_POST['User_Name'];
$Password=$_POST['Password'];
$login=$_GET['login'];
include('db_fda.txt');
$get=mysql_query("SELECT * FROM `farmer` WHERE User_Name = '$User_Name' && PASSWORD = '$Password'",$con) or die("query execution error");
$result=mysql_affected_rows();
if($result!=1)
{
echo '<html><head>login</head><center>You have either entered wrong UserName / Password or not registered with FDA<br> ';
echo 'To Register<br> <a href="index.html">->Click Here</a><center/></html>';
}
else
{
setcookie('User_Name', $User_Name);
setcookie('Password', $Password);
echo '<html><head>login</head><<center>Login sucess</html>';
print("<p><a href='index1.php'>Proceed</a></p></center>");
}
?>
please i need immediate support for this... Thank you.