Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Affiliate Program
Hosting Plans
UBBDev.com
UBBSkins.com
Who's Online
4 registered (Stan, Pink Jazz, Matthias1976, 1 invisible), 36 Guests and 48 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 01/02/10
Posts: 70
Top Posters (30 Days)
Rick 103
Ruben 96
Sirdude 80
Gizmo 69
Iann128 26
GregK 25
teamzr1 20
driv 20
Chevy454 19
VaGunTrader 19
Latest Photos
Yachting off the West Coast of Scotland
Something You might Light
becky as tiger bait
rss creator
surfing dogs
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#165530 - 10/09/06 11: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 02:32 AM)
Top
Host With Us!
#165547 - 10/10/06 02:51 AM Re: Converting datetime [Re: Yomar]
Gizmo Offline

Registered: 06/05/06
Posts: 13955
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 03: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 03:48 AM Re: Converting datetime [Re: Yomar]
Gizmo Offline

Registered: 06/05/06
Posts: 13955
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 02: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 02:47 PM)
Top
#165679 - 10/10/06 05:15 PM Re: Converting datetime [Re: Yomar]
Gizmo Offline

Registered: 06/05/06
Posts: 13955
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 06:51 PM Re: Converting datetime [Re: Gizmo]
David Dreezer Offline
Pooh-Bah
Registered: 07/21/06
Posts: 2123 ****
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.
_________________________
This thread for sale. Click here!
Top
#165720 - 10/10/06 11: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/11/06 01:09 AM Re: Converting datetime [Re: Yomar]
Gizmo Offline

Registered: 06/05/06
Posts: 13955
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 04:36 PM Re: Converting datetime [Re: Gizmo]
Gizmo Offline

Registered: 06/05/06
Posts: 13955
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
Exporting a forum to a new board.
by Ruben
Yesterday at 03:27 PM
WowBB Importer Discussion
by Rick
Yesterday at 03:19 PM
WowBB Importer Now Available
by Rick
Yesterday at 03:18 PM
Is there a demonstration site anywhere?
by MuddyD
Yesterday at 12:24 PM
New topic icons
by GregK
Yesterday at 11:38 AM
Forum Stats
7937 Members
37 Forums
32960 Topics
173832 Posts

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