Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I need to search word like 'Galaxy S Duos' using search keyword 'galaxysduos'. Kindly provide me the solution in PHP Mysql Query.
SELECT * FROM yourTable WHERE REPLACE(fieldname," ","")="galaxysduos"
try this added some modifiction of #Hanky's answer
SELECT * FROM `yout_table` WHERE LOWER(REPLACE(`your_field`," ",""))="galaxysduos"
OR
SELECT * FROM `yout_table` WHERE REPLACE(LOWER(`your_field`)," ","")="galaxysduos"
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
i have a column of user names and every name is repeating one or more than one. i want to display that user name maximum one time through php or sql query. Any suggestions please?
I think i understand your problem you want to get rid of the repeating elements from your result returned by sql so if you are working in php you can do it by:
1) get your result in ascending order
2) do this in your php code
$temp=NULL;
$names=array();
$i=0;
foreach($result as $row){
if($row->id!=$temp){
$temp=$row->id;
$name[$i]=$temp;
$i++;
}
}
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
I have a project in which i have to make a code in which when we click on menu bar and the option that we select in menu bar the page related to that option will display all this is to be done through my sql.Is there any way to do this task.
I don't understand exactly what you want and if there is a better way to do this, but don't put in your sql fields PHP code.
You can create a xml document instead, and use it better.PHP.net - XMLdocument
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
How could one build a system using PHP that tracks every event that occurs? Such as when someone comments on something, likes something or changes something.
The only thing that comes to mind right now is by the use of query strings when ever one invokes a command.
Try implementing the Observer pattern.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I need to replace everything outside angle brackets
example
input String:
hello <how> are you <I'm fine> thanks. <what "about" you>, I'm fine as well thank you.
output String:
* <how> * * <I'm fine> *. <what "about" you>, * * * * * *.
Since the language/tool is unknown, you can try this:
search: ((?:<[^>]*>|[.,\s])*)[^\s,.<]+((?:<[^>]*>|[.,\s])*)
replace: $1*$2
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I'm trying to save a string:
`Error Number: 1366</p><p>Incorrect string value: '\xCC\xC7 Ree...' for column 'ShipToName' at row 1</p><p>INSERT INTO `default_orders` (`OrderNumber`, `ShipCarrier`, `ShipService`, `ShipDate`, `ShipToName`, `ShipToAddress1`, `ShipToAddress2`, `ShipToCity`, `ShipToState`, `ShipToZip`, `ShipToCountry`, `ShipToPhone`, `SKU1`, `ProdName1`, `Qty1`, `batch_id`, `timestamp`, `client_id`, `status`) VALUES ('LIFEG-1004648', 'USPS', 'First Class Mail', '', 'Zo�� Reed', '17`
But it won't save. I'm using CodeIgniter Active record if that matters.
Use form_open('controller/function') function in your HTML, it adds the accept-charset="utf-8" to the form, change your collation to utf8_bin and try once.