php - Keep getting Fatal error: Function name must be a string in -


i'm not seeing quite seems there's nothing defining function here. i've tried can see php limited @ point- month or , can't seem it:

error says: fatal error: function name must string in /home/ad67852/public_html/ft-adshot.com/login.php on line 35......

 }  else    {     mysql_query("update members set lastlogin = '".time()."'    userid='userid'");     $_session("ulogin");     $_session['ulogin'] = true;     $_session("uname");     $_session['uname'] = $userid;     $_session("pw");     $_session['pw'] = $password;     //header("location: /members/index.php"); 

i wondered if time () not defined or nothing tried has worked far!

thanks in advance appreciate solving one, robert

$time=time(); mysql_query("update members set `lastlogin` = '".$time."' `userid`='userid'");      $_session['ulogin'];      $_session['ulogin'] = true;      $_session['uname'];      $_session['uname'] = $userid;      $_session['pw'];      $_session['pw'] = $password;      //header("location: /members/index.php"); 

use , try


Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -