Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Affiliate Program
UBBDev.com
UBBSkins.com
Who's Online
2 registered (Bjab, Flyin V), 18 Guests and 42 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 12/24/03
Posts: 29
Top Posters (30 Days)
Sirdude 142
lightningrod 97
Rick 87
Gizmo 83
Ruben 54
Wisc.Tiger 35
Bad Frog 28
David Dreezer 27
JAISP 23
SteveS 19
Latest Photos
Tower Speakers, everyone needs them!
Going old style
the Frog
My Tractor Design and Build Project
Tombstone AZ
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#165530 - 10/09/06 09:18 PM Converting datetime
Yomar Offline
member
Registered: 09/02/04
Posts: 164
Loc: Leiden, The Netherlands
With my very limited PHP programming skills (don't laugh!) I have somehow managed to pull data from the forum database and make my own custom islands showing full postings:

http://www.fabulaemarrii.com/guildnews2.php

...using this code:

PHP:

<?php
  // Open and select database
  $link = mysql_connect('topsecretserver','topsecretdatabasename','topsecretpassword');
  if (!$link)
    {
    die('Cannot connect to server: '.mysql_error());
    }

  $db = mysql_select_db('topsecretdatabase',$link);
  if (!$db)
    {
     die('Cannot select database: '. mysql_error());
    }

  // Find out post id's
      $query = "SELECT * FROM ubbt_TOPICS where FORUM_ID=18 ORDER BY POST_ID DESC";
      $result = mysql_query($query);
      if (!$result)
        {
        die('Cannot read from database: '.mysql_error());
        }
      $num_results = mysql_num_rows($result);
      echo '<i>Found '.$num_results.' results. </i>';

  echo '</tr><tr bgcolor="#555555"><td>';

  // Build table

      for ($i=0; $i <$num_results; $i++)
        {
        $rowid = mysql_fetch_array($result);
        $postid=$rowid['POST_ID'];

        $queryposting = "SELECT * FROM ubbt_POSTS where POST_ID=".$postid."";
        $resultposting = mysql_query($queryposting);
        if (!$result)
          {
          die('Cannot read from database: '.mysql_error());
          }
        $rowposting = mysql_fetch_array($resultposting);
        $subject=$rowposting['POST_SUBJECT'];
        $time=$rowposting['POST_POSTED_TIME'];
        $body=$rowposting['POST_BODY'];
        $userid=$rowposting['USER_ID'];

        if ($userid=='211')
          {
          $username="Catkin";
          }
        elseif ($userid=='2')
          {
          $username="Yomarbalthasar";
          }
        else
          {
          $username="We have no idea, really";
          }

      echo '<b><font color="white">'.$time.': '.$subject.'</b></font><br>';
      echo '</td></tr><tr bgcolor="#CCCCCC"><td>'.$body.'<br><i>Posted by '.$username.'</i>';
      echo '</td></tr><tr bgcolor="#555555"><td>';
      }
?>



So far so good. Now the last thing I need to do to get this working is convert the time of the posting. I can pull it from the database, but I get some illegible number. How do I convert this number to a more legible format, preferably YYYYMMDD HHMM (24-hour format)?

There's probably one command for this, but to find out what works, I need to know in what format this data is stored in the first place.


Edited by Yomar (10/10/06 12:32 AM)
Top
#165547 - 10/10/06 12:51 AM Re: Converting datetime [Re: Yomar]
Gizmo Offline
Registered: 06/04/06
Posts: 13625
Loc: Portland, OR; USA ***
The date in the database is stored as a Unix Epoch, you can manipulate date() to convert from unix epoch as: date("format", $time);
_________________________
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic
UBB Modifications, Styling, Coding Services, and more!
Top
#165552 - 10/10/06 01:35 AM Re: Converting datetime [Re: Gizmo]
Yomar Offline
member
Registered: 09/02/04
Posts: 164
Loc: Leiden, The Netherlands
Fantastic Gizmo! It's finally working!

Thank you very much.
Top
#165555 - 10/10/06 01:48 AM Re: Converting datetime [Re: Yomar]
Gizmo Offline
Registered: 06/04/06
Posts: 13625
Loc: Portland, OR; USA ***
Not a problem... The sad thing is that I know all of this odd stuff offhand lol... I had to make a date converter when recoding things for one of my RPG help sites, the old system stored stuff as physical dates vs Unix Epoch and i wanted to change the format and figured the best way would be to store as unix epoch and change it on the fly...

Let me know how your modding goes :).
_________________________
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic
UBB Modifications, Styling, Coding Services, and more!
Top
#165652 - 10/10/06 12:38 PM Re: Converting datetime [Re: Gizmo]
Yomar Offline
member
Registered: 09/02/04
Posts: 164
Loc: Leiden, The Netherlands
Final version:

PHP:

<?php
  // Open and select database
  $link = mysql_connect('server','username','password');
  if (!$link)
    {
    die('Cannot connect to server: '.mysql_error());
    }

  $db = mysql_select_db('database',$link);
  if (!$db)
    {
     die('Cannot select database: '. mysql_error());
    }

  // Find out post id's
      $query = "SELECT * FROM ubbt_TOPICS where FORUM_ID=18 ORDER BY POST_ID DESC";
      $result = mysql_query($query);
      if (!$result)
        {
        die('Cannot read from database: '.mysql_error());
        }
      $num_results = mysql_num_rows($result);
      echo '<i>Found '.$num_results.' results. </i>';

  echo '</tr><tr bgcolor="#555555"><td>';

  // Build table

      for ($i=0; $i <$num_results; $i++)
        {
        $rowid = mysql_fetch_array($result);
        $postid=$rowid['POST_ID'];

        $queryposting = "SELECT * FROM ubbt_POSTS where POST_ID=".$postid."";
        $resultposting = mysql_query($queryposting);
        if (!$result)
          {
          die('Cannot read from database: '.mysql_error());
          }
        $rowposting = mysql_fetch_array($resultposting);
        $subject=$rowposting['POST_SUBJECT'];
        $time=$rowposting['POST_POSTED_TIME'];
        $timeconvert=date("d-m-Y, H:i", $time);
        $body=$rowposting['POST_BODY'];
        $userid=$rowposting['USER_ID'];

        if ($userid=='211')
          {
          $username="Catkin";
          }
        elseif ($userid=='2')
          {
          $username="Yomarbalthasar";
          }
        else
          {
          $username="We have no idea, really";
          }

      echo '<b><font color="white">'.$timeconvert.': '.$subject.'</b></font><br>';
      echo '</td></tr><tr bgcolor="#CCCCCC"><td>'.$body.'</td></tr>';
      echo '<tr bgcolor="#CCCCCC"><td align="right"><i>Posted by '.$username.'</i>
<a href="http://www.fabulaemarrii.com/ubbthreads7/ubbthreads.php?ubb=showflat&Number='
.$postid.'">Respond!</a>';
      echo '</td></tr><tr bgcolor="#555555"><td>';
      }
?>



I'm definitely not a professional PHP programmer, but at least it works. Feel free to adapt the script and use it for your own purposes. The words server, username, password and database must of course be replaced with your own data.

Basically this script pulls all postings from forum number 18, then reverses the order of those postings (newest postings on top), links the ID's of those postings with the actual bodies of the postings, and then wraps the result in a nice table. It also pulls/converts the timestamp of the posting and links the user ID of the poster to the actual user name (in our case only 3 users have the right to post on said forum, so chances are you need to change this into something more dynamic and sophisticated). Last but not least a link to said posting is added, so that people can post straight from the content island.

Note that this wrap only works in a specific context, as the beginning of the table is not defined. So you will also need to tweak the <td>, <tr> and <table> tags a bit.


Edited by Yomar (10/10/06 12:47 PM)
Top
#165679 - 10/10/06 03:15 PM Re: Converting datetime [Re: Yomar]
Gizmo Offline
Registered: 06/04/06
Posts: 13625
Loc: Portland, OR; USA ***
Not too shabby, I'm sure I'll adapt the world out of it ;)...
_________________________
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic
UBB Modifications, Styling, Coding Services, and more!
Top
#165701 - 10/10/06 04:51 PM Re: Converting datetime [Re: Gizmo]
David Dreezer Offline
Pooh-Bah
Registered: 07/21/06
Posts: 2038 ****
I think i'd use a LIMIT on the select for topics.


Now expand on this to make it server friendly. Write the results to a file. Check the timestamp of the file. If it's younger than 5 minutes old server the content right off the file instead of doing the database hit. If the file is older than 5 minutes unlink it, do the database work, write the file, then server it.
_________________________
Top
#165720 - 10/10/06 09:40 PM Re: Converting datetime [Re: David Dreezer]
Yomar Offline
member
Registered: 09/02/04
Posts: 164
Loc: Leiden, The Netherlands
Aye, I will definitely implement a LIMIT function - when the time is there, as it will take a year or so before that actually becomes a problem

The same for the server-friendliness. We're not that high-profile (maybe like 50 visitors a day), so we can handle this. But I totally agree you need to work with files and timestamps if you have a site with many visitors.
Top
#165725 - 10/10/06 11:09 PM Re: Converting datetime [Re: Yomar]
Gizmo Offline
Registered: 06/04/06
Posts: 13625
Loc: Portland, OR; USA ***
'eh I'm not good with caching myself or i'd help lol... Though I may get super bored, so who knows...
_________________________
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic
UBB Modifications, Styling, Coding Services, and more!
Top
#165800 - 10/11/06 02:36 PM Re: Converting datetime [Re: Gizmo]
Gizmo Offline
Registered: 06/04/06
Posts: 13625
Loc: Portland, OR; USA ***
Ok, so I got bored and made my own rendition of UBBNews for 7.0 (albeit sloppy, but hey it works, although no caching just like yours)...

UBBDev: UBB.News 7.0
_________________________
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic
UBB Modifications, Styling, Coding Services, and more!
Top
Page 1 of 2 1 2 >


Moderator:  AllenAyres, Gizmo, Harold, Ian, Ron M, Sirdude 
Shout Box

Facebook Page
Today's Birthdays
No Birthdays
Recent Topics
Notepad Creates Errors when working with PHP
by lightningrod
Today at 05:08 AM
Waiting For Software
by Hook them Lipps
Yesterday at 06:26 PM
Deleting posts...
by Sherri
Yesterday at 06:16 PM
New phone
by Harold
Yesterday at 05:22 PM
Google Adsense
by terroir360
Yesterday at 05:18 PM
Forum Stats
6736 Members
35 Forums
32455 Topics
170059 Posts

Max Online: 978 @ 06/24/07 08:19 PM
Random Image