Jump to content

Date Difference using PHP date() and Stored MySQL Date


Landslyde
Go to solution Solved by Jacques1,

Recommended Posts

Hello Forum:

 

I smoked down the Google servers on this one and didn't come up with what I'm looking for. I have a MySQL table that stores a couple fields, one of them being a date field (set by CURDATE()) when it was written to the table. I'm trying to use the PHP date() and the sql field to find the number of days that's elapse, but I can't seem to get that to work for me. Here's what I'm working with:

$stmt = $db->prepare('SELECT a.attendeeid, s.attendeeid, fname, lname, suspend, reason, sdate, a.memberid, s.memberid 
FROM attendees AS a 
JOIN suspended AS s ON a.attendeeid = s.attendeeid 
WHERE a.memberid = :memberid 
AND suspend = "Y"');
$stmt->bindValue(':memberid', $memberid, PDO::PARAM_INT);
$stmt->execute();
$result = $stmt->fetchAll(); ?> 
 
<div class="row"> 
<div class="table-repsonsive">
<table class="table table-bordered table-hover table-striped" style="margin-top:30px">
   <thead>
      <tr>
         <th style="text-transform: uppercase">First</th>
         <th style="text-transform: uppercase">Last</th>
         <th style="text-transform: uppercase">Suspended</th>
         <th style="text-transform: uppercase">Suspension Date</th>
         <th style="text-transform: uppercase">Days on suspension</th>
         <th style="text-transform: uppercase">Reason</th>
      </tr>
   </thead>
 
<?php foreach($result as $row ) { $i++; ?>
 
<tbody>
    <?php echo '<tr style="'.getbgc($i). '">' ?>
       <td style="width:auto;"><?php echo $row[2] ?></td>
       <td style="width:auto;"><?php echo $row[3] ?></td>
       <td style="width:auto;"><?php echo $row[4] ?></td>
       <td style="width:auto;"><?php echo $row[6] ?></td>
       <td style="width:auto;"><?php echo strtodate(date('Y-m-d')) - $row[6] ?></td> // This is not working
       <td style="width:auto;"><?php echo $row[5] ?></td>

$row[6] holds sdate from the query. Does anyone know how I can do this? Thanks.

Edited by Landslyde
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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