Jump to content

freakness883

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

freakness883's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I was hoping to use the following code to make sure that a date entered is not more than 365 from now: [code]!(floor((time() - strtotime($expiration_date))/86400) > 365) [/code] This condition fails. Does anyone know why?
  2. I have the following code: [quote]<?php     $query3 = "SELECT members FROM groups WHERE g_id='".$id."'"; echo "$query3";     $result3 = mysql_query("SELECT members FROM groups WHERE g_id='1'"); $row = mysql_fetch_row($result3);     $pieces = explode(" ", $row); echo $pieces[0]; echo $pieces[1]; if (in_array("bbaker", $pieces)) {   echo "Got bbaker"; } else{   echo "nope"; } [/quote] [b]echo "$query3"[/b] is printing out the proper select statement -- runnning the statement manually in MySQL gets me the record "bbaker bbarker". But when I echo [b]$pieces[0][/b] and [b]$pieces[1][/b] I get the output [b]Array[/b] for both. I was hoping for bbaker and bbarker. And also I'm returning false on the condition [b]in_array("bbaker", $pieces)[/b]. Something's wrong with my SQL query. Any help is appreciated.
×
×
  • 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.