Jump to content

shankarganesh

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

shankarganesh's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, Please try it with this updated query, $query = ("SELECT * FROM wp_book WHERE Author_ID = '".$Author_ID.'""); Thanks.
  2. Hi, Please paste the output of all the session values by using below code, echo "<pre>"; print_r($_POST['$_SESSION']); and did you get the output for $_SESSION['SESS_NAME']? Thanks.
  3. Hi, Use this to reduce the hours and minutes, $unix_time = strtotime('January 1 2010 '.$time); // create a unix timestamp echo date( "H:i", strtotime('-30 minutes', $unix_time) );
  4. Hi, Use the below query to display the ads inorder for respective zone $query = "SELECT adcode FROM ads WHERE zone='{$zoneid}' ORDER BY auto_incremented_id ASC"; $result = mysql_query($query); Thanks.
  5. HI, Please let me know all the database operations are done is same single page? ie, design and database operations are done in same php page? I recommend you to separate these tow in different pages one for design and another for database operations. When user submits the page, the data should be posted to DB operation page and after completing the DB process redirect your page to another page that contains success message. Thanks.
  6. Hi, Can you please explain it with bit more clear.
×
×
  • 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.