Posts by jadeilson • 35 points
2 posts
-
2
votes2
answers146
viewsQ: How to give an UPDATE by swapping for ?
I am trying to perform an UPDATE to change the \\ for \ , as in SQL below: UPDATE `post` SET `descricao`= replace(descricao, '\\','\'); I was told that Mysql does not accept regular expression on…
-
0
votes1
answer63
viewsQ: .val() does not work on the textarea tag
I’m taking a data that is in an attribute of my select-option (date-observation), so far so good, however when I try to pass this value to my textarea the value is not printed, just on the console,…