3
votes
1answer
127 views

Strip/delete all values from MySQL query using PHP regex?

How to strip/delete all values from MySQL queries using PHP Regex? Example: original: SELECT id, abc FROM mytable WHERE id IN (12, 15) striped: SELECT id, abc FROM mytable WHERE id IN () ...
-1
votes
5answers
106 views

strip defined character from string

im having a odd problem os my website, i have a script that records all the searchs and insert those search words on database, the problem is that since search engine robots started sneaking around my ...
0
votes
0answers
213 views

Remove All HTML from specific columns with MySQL

I need to remove all the html code from these two columns. ps_product_lang.description_short AS 'post_excerpt', ps_product_lang.description AS 'post_content', Clean the code because sometimes the ...
6
votes
2answers
191 views

mysql - select match the most characters

I don't know what function this is called but I am trying to select a row that matches/has the most characters for the output. Here is what I have tried. select * from table where title like ...
1
vote
3answers
154 views

Strip character in a php 'for' loop/mysql query

I have a loop that successfully shows account numbers. Some of these numbers were saved into the db with an "@" prepended. I would like to strip the "@" sign from the displayed results. I've seen ...
0
votes
3answers
136 views

Replace “ with \” with Doctrine 1.2

Here is my problem. I get data from database using Doctrine 1.2 and put the data in a Textbox. The data is 19" x 12" to put in the Textbox Here is the result: <input type="text" value="19" x ...
1
vote
2answers
1k views

PHP MySql display returned content without html tags being stripped

I have a column in SQL 'Text' datatype and inside I have content within html tag, eg somecontent: onetwo... I want the mysql query to echo out the databases contents without stripping the html tags ...