php - How to insert multiple strings into specific column with space between? -
php - How to insert multiple strings into specific column with space between? -
how insert multiple strings specific column space?
example:
$this->database[abb]->doquery('insert market (account, user, rank, changetime) values (?,?,?, getdate())', $_session['account'], $user, $rank); the values sanitized in total code above query want combine account & user columns 1 (accuserinfo) , when inserted, should insert them space between: accex userex
is possible in php script when inserted mssql server 2005 table?
i alter db structure, wanna know how include both strings query space between them?
to bring together 2 stings space:
$foo=$cat.' '.$dog; your particular case:
$accuserinfo=$_session['account'].' '.$user; php sql-server
Comments
Post a Comment