Jump to content

[SOLVED] Check Availability


matt.sisto

Recommended Posts

I am trying to build some script that will query the database for events on a specified date. What is wrong with my sql?

<?php

  require "dbconn2.php";
  $m = $_POST["month"];
  $d = $_POST["day"];
  $y = $_POST["year"];

  $event_start = $y."-".$m."-".$d." ".$_POST["event_start"];
  
  $sql = "SELECT * FROM calender_events WHERE event_start == "event_start"";
  $result = mysql_query ($sql, $connection)
    or die ("Couldn't perform query $sql <br />".mysql_error());
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>List All</title>
<style type="text/css">
  #top {clear:left}
  #left {position:absolute; left:5px; max-width: 20%; float:left; padding:5px 5px 5px 5px}
  ul {list-style: none; position:absolute; left: 1px; top: 0px;}
  #mid {position:absolute; left:10%;max-width: 50%; float:left; padding:5px 5px 5px 5px}
  #right {position:absolute; right:5px; max-width: 30%; float:left; padding:5px 5px 5px 5px}
</style>

</head>

<body>

<div id="top">
<h1> List Events</h1>

</div>
<div id="mid"> 
<table border="1">
    <tr>
      <th align="left">ID </th>
      <th align="left">Title</th>
      <th align="left">Short Description</th>
    </tr>

  <?php
    while ($row = mysql_fetch_array($result))
{?>
      <tr>
        <td><?=$row['event_id']?></td>
        <td><?=$row['event_title']?></td>
        <td><?=$row['event_shortdesc']?></td>
      </tr>
  <?php } ?>
  </table>
</div>

<div id="left">
</div> 

</body>
</html>

 

Appreciate an help.  8)

Link to comment
https://forums.phpfreaks.com/topic/150363-solved-check-availability/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.