Jump to content

fiddy

Members
  • Posts

    75
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

fiddy's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, I am in need to develop a web hosting website where users choose their hosting package and buy it(this is fine as we will be storing in DB). When comming to the admin section where the admin has to provide the users requested space with all features, i really wonder , how to do it. Becuse i have not come across one like this earlier. And i also wonder how to search if a domain name is available or not while domain registation. Kindly help me by telling your ideas or correct me if i am wrong some where. Thanks
  2. If you are getting a blank page. then there should be problem with the DB connection i guess. It might not show you errors if error reporting is off in your php.ini. Just a Thought...
  3. fiddy

    insert row?

    $query = "INSERT INTO `".$school."` ( `name`, `score`) VALUES ( '" . $name1 . "' , '0');"; Pls try this
  4. fiddy

    insert row?

    if you add @ before mysql_ query it will suppress the error. I guess there is some thing wrong with your query near 0. try removing the double quotes in 0 and use only single quotes.
  5. try like this also echo the $sql and see if the sql is correct $sql=UPDATE ticket SET status='$status',solution='".$solution."'  WHERE ticket_id='".$ticketid."'" mysql_query ($sql) or die (mysql_error());
  6. So this is the problem. <input type="submit" value="submit"> give a name for the submit button <input type="submit" value="submit" name="submit">
  7. Sorry thats print_r($_POST); 
  8. friend can you pls put  print_t($_POST);  at the top of the page and tell me what you get before cliking close and after clicking close buttom
  9. Posting again my friend: HI i guess you no need else part there, becuse when the page loads for the first time the post values will not be there so the else part is working and you are getting that message.
  10. Hope you are getting those values like this $Course_Id=$_GET['Course_Id']; $Course_Begin_Time = $_GET['Course_Begin_Time']; $Instructor_1 = $_GET['Instructor_1'];
  11. Can you try this... echo              '<div>            <a href="course_details_index.php?Course_Id=       '.$Course_Id.'       &Course_Begin_Time='.$Course_Begin_Time.'       &Instructor_1='.$Instructor_1.'">       <img src="media/course_pics/'.$Course_Pic .'" alt="Featured Course Image" border="none"       img style="position:absolute; height:300px; width:300px; TOP:0px; LEFT:0px;">[/url]       </div>';
  12. Hi, can you please tell if you get the message "The ticket is now closed good work!"; after clicking the close button. One more in the HTML i dont find the tags for close . Is that located in some other page. Bit confused in this
  13. HI i guess you no need else part there, becuse when the page loads for the first time the post values will not be there so the else part is working and you are getting that message
  14. Sorry i cant help more than this from here with out seeing the output or proper files.. All the best
×
×
  • 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.