Search found 4 matches
- Tue Nov 30, 2010 9:20 pm
- Forum: PHP - Code
- Topic: Need Suggestions here .
- Replies: 1
- Views: 79
Need Suggestions here .
Basically my database had the following stu_satisfaction_tblquestions - question_id - Question - answer_type answer_type - id - answer1 - answer2 - answer3 - answer4 - answer5 With this database..I just want to display about 20 questions with the options (Radio button). How should I go about doing i...
- Thu Nov 18, 2010 8:01 am
- Forum: PHP - Code
- Topic: Displaying of information from database
- Replies: 4
- Views: 625
Re: Displaying of information from database
The user will be able to see the questions and the options available from the database through a webpage. It's like a survey form.
- Thu Nov 18, 2010 7:44 am
- Forum: PHP - Code
- Topic: Displaying of information from database
- Replies: 4
- Views: 625
Re: Displaying of information from database
Based on this: $query = "SELECT qtitle FROM questions WHERE qid = '".$_GET['qid']."'"; $result = mysql_query($query) or die("ERROR: $query. ".mysql_error()); $row = mysql_fetch_object($result); it looks like you're only trying to retrieve one question. Hi, how should I...
- Thu Nov 18, 2010 4:32 am
- Forum: PHP - Code
- Topic: Displaying of information from database
- Replies: 4
- Views: 625
Displaying of information from database
Hi I had a few questions stored in the database, I wanna call it out to display in my webpage, but no matter how I do, I can only display 1 ..anyone can help me ?? <html> <head><basefont face = 'Arial'></head> <body> <h2>Administration</h2> <?php if ($_GET['qid'] && is_numeric($_GET['qid']))...