The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help, help, date from MySQL with DB Class
#4
Faguss posted the solution, but here is why your code didn't work. The problem with your original query is you are trying to use echo, which only prints strings. $today is an object that was returned by $db->query(), so you'd need echo out the object property (or convert it to an array first if you are more comfortable with them).

$db->first() returns the first row as an object, and passing a true value will tell it to return an array instead. This is extremely useful when you know you will only have one row:
Code:
$db->first(true) // this will return an array

Now that it's an object/array of just the first row, you can echo the data as you please:
Code:
$result = $db->query("SELECT NOW() as 'now'")->first();
Code:
echo $result->now; // as an object

Code:
$result = $db->query("SELECT NOW() as 'now'")->first(true);
Code:
echo $result['now']; // as an array
  Reply


Messages In This Thread
help, help, date from MySQL with DB Class - by karsen - 07-15-2017, 02:42 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)