Jump to content
Larry Ullman's Book Forums

Search the Community

Showing results for tags 'select fields'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Single Editions
    • Modern Javascript: Develop and Design
    • The Yii Book
    • Effortless Flex 4 Development
    • Building a Web Site with Ajax: Visual QuickProject
    • Ruby: Visual QuickStart Guide
    • C++ Programming: Visual QuickStart Guide
    • C Programming: Visual QuickStart Guide
    • Adobe AIR: Visual QuickPro Guide
  • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (5th Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (4th Edition)
    • PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide (3rd Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (2nd Edition)
    • PHP and MySQL for Dynamic Web Sites: Visual QuickPro Guide (1st Edition)
  • PHP for the Web: Visual QuickStart Guide
    • PHP for the Web: Visual QuickStart Guide (5th Edition)
    • PHP for the Web: Visual QuickStart Guide (4th Edition)
    • PHP for the Web: Visual QuickStart Guide (3rd Edition)
    • PHP for the World Wide Web: Visual QuickStart Guide (2nd Edition)
    • PHP for the World Wide Web: Visual QuickStart Guide (1st Edition)
  • Effortless E-commerce with PHP and MySQL
    • Effortless E-Commerce with PHP and MySQL (2nd Edition)
    • Effortless E-Commerce with PHP and MySQL
  • PHP Advanced: Visual QuickPro Guide
    • PHP Advanced and Object-Oriented Programming: Visual QuickPro Guide (3rd Edition)
    • PHP 5 Advanced: Visual QuickPro Guide (2nd Edition)
    • PHP Advanced: Visual QuickPro Guide
  • MySQL: Visual QuickStart Guide
    • MySQL: Visual QuickStart Guide (2nd Edition)
    • MySQL: Visual QuickStart Guide (1st Edition)
  • Other
    • Announcements
    • Newsletter, Blog, and Other Topics
    • Forum Issues
    • Social

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Found 1 result

  1. Hello, I'm new to this forum thanks to a stupid problem I've been struggling with in the past couple of days. Now please keep in mind that I'm a newbie PHP dev, as in I'm working on a school project and sadly there's nobody who could give me a hand there. I need to warn you that my code uses the mysql functions, not mysqli or whatever else, since I'm using XAMPP and I don't really need to upgrade to the newest version. So, the problem is this: for some reason I can't seem to be able to validate my radio button group or my select field(drop down list). If I don't validate, will my data be sent to the db anyway because that would be the better option. If not, could you please help me out? Here's my code: <?php $query_fill_table = "SELECT `movie_title`, `play_time_1`, `play_time_2`, `play_time_3` FROM `on_screen`"; if($query_fill_table_run = mysql_query($query_fill_table)) { echo '<table border="1"> <tr> <th>Movie Title</th> <th>Show Times</th> <th>Number of Seats</th> </tr>'; while($query_rows = mysql_fetch_assoc($query_fill_table_run)) { echo '<tr>'; echo '<td>'.$query_rows['movie_title'].'</td>'; echo '<td>'; ?> <form action="make_reservation.php" method="POST"> <input type = "radio" name = "showtimes" value = "1"><?php echo $query_rows['play_time_1'];?> <input type = "radio" name = "showtimes" value = "2"><?php echo $query_rows['play_time_2'];?> <input type = "radio" name = "showtimes" value = "3"><?php echo $query_rows['play_time_3'];?> </form> <?php echo '</td>'; echo '<td>'; ?> <form action="make_reservation.php" method="POST"> <select name = "seats"> <option value="0"></option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> </form> <?php echo '</td>'; } echo '</table>'; if(isset($_POST['showtimes'], $_POST['seats'])) { $showtimes = $_POST['showtimes']; $seats = $_POST['seats']; //this is just a check if($showtimes==1) { echo 'ok'; } } else { echo 'not ok.'; } } ?> <form action="make_reservation.php" method="POST"> <input type="submit" value="Submit reservation"> </form> This isn't the complete code, but it is the validation section which is what seems to not be working. I will greatly appreciate any opinions. Thanks! ~Vanya D.
×
×
  • Create New...