We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Im trying to convert the following string
x[mark8044][userid:12345] into ==> x[newusername][userid:12345]
x[mark8044][userid:12345]
x[newusername][userid:12345]
But something is not working here, I have a feeling it has to do with trying to put the prepared statement ? that sites within a quote '
?
'
$userid = 12345; $oldusername = 'mark8044'; $newusername = 'newusername'; $db->rawQuery(" UPDATE texthistory SET texthistory = REPLACE(pagetext, 'x['?'][userid:'?']', '@['?'][userid:'?']') WHERE texthistory LIKE '%@['?'][userid:'?']%' AND userid = ?", Array($oldusername,$userid,$newusername, $userid, $oldusername, $userid));
Removing the quotes does not seem to work either
$db->rawQuery(" UPDATE texthistory SET texthistory = REPLACE(pagetext, 'x[?][userid:?]', '@[?][userid:?]') WHERE texthistory LIKE '%@[?][userid:?]%' AND userid = ?", Array($oldusername,$userid,$newusername, $userid, $oldusername, $userid));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Im trying to convert the following string
x[mark8044][userid:12345]
into ==>x[newusername][userid:12345]
But something is not working here, I have a feeling it has to do with trying to put the prepared statement
?
that sites within a quote'
Removing the quotes does not seem to work either
The text was updated successfully, but these errors were encountered: