Jump to content

SUNIL16

Members
  • Posts

    59
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

SUNIL16's Achievements

Member

Member (2/5)

0

Reputation

  1. this is form <form action="foo.php" method="POST"> Name: <input type="text" name="username" /><br /> Email: <input type="text" name="email" /><br /> <input type="submit" name="submit" value="Submit me!" /> </form> in foo.php i am getting values of username and email in firefox but in ie6 i am not getting using $_POST['username'] or using $_REQUEST['username'];
  2. Hi Friends, I have form in that i am sending some values using POST method. But i cant able to get values using $_POST['var'] or $_REQEUST['var'] Data is not coming in IE6, But it is coming in firefox and other browsers even in IE8. What may be problem? any settings i have to make for IE6. ? Any suggestions
  3. thank u sir, it solved my problem
  4. Hi friends How to get data between two same dates my query is working for timestamp 00:00:00 below is my query SELECT ACTIVITY_TYPE,,date_format(ACTIVITY_DATE,'%Y/%m/%d') as logdate FROM activity_log WHERE ACTIVITY_DATE BETWEEN STR_TO_DATE('10/12/2010','%d/%m/%Y') and STR_TO_DATE('10/12/2010,'%d/%m/%Y') values in table type date a 10/12/2010 11:39:43 b 10/12/2010 13:39:43 c 10/12/2010 14:39:43 my above query will work and returns these 3 rows wen data is like this a 10/12/2010 00:00:00 b 10/12/2010 00:00:00 c 10/12/2010 00:00:00 but when time is there how to fetch data any ideas thanks sunil
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.