Tagged Questions
-1
votes
2answers
27 views
How to strip/delete all spaces **except between words** in a string in php?
I saved the values to mysql and I saw spaces like that.
INSERT INTO `names` VALUES (7, 'James Bond ');
I tried to make it:
INSERT INTO `names` VALUES (7, 'James Bond');
I know make it ...
1
vote
1answer
75 views
str_replace not working on database return
I'm getting stumped by what should be a really simple str_replace function.
In my database, I have a field for a minecraft server motd(message of the day). When I collect data from servers I store the ...
0
votes
4answers
193 views
Sanitizing Apostrophes with PHP
I am having trouble with apostrophes causing errors in a grading system I have setup. When a customer submits a paper that contains apostrophes, I am replacing all apostrophes with PHP like so:
//Now ...
0
votes
1answer
93 views
Insert data from one input into two mysql columns
I have a simple insert.php formular that got created by Dreamweaver CS5. I want to be able to enter my News headline in this formular into the column "news_headline" in my database and then ...
0
votes
1answer
110 views
PHP/Mysql - Add form data HTML elements with line breaks
Basically, I have an administration area where users are to be able to add information to a MySQL database using a form textarea. The users have little or no HTML knowledge so I'd like them to be ...
0
votes
2answers
39 views
Posting Data To Mysql with IDs
I have a form with some input texts. It's counted with the name + an id. Like:
megnevezes_1
megnevezes_2
My form has also a counted id tag, called tid_1 and go on.
When I post my form i made a ...
1
vote
3answers
136 views
Why is str_replace not replacing this string?
I have the following PHP code which should load the data from a CSS file into a variable, search for the old body background colour, replace it with the colour from a submitted form, resave the CSS ...
0
votes
2answers
42 views
How to replace a portion of a dynamic php string
I have a page that is calling dynamic URL content from MySQL via Primary ID. The information is being called and echoed as
"../images/icons/filename.jpg"
via this command:
<php echo ...
6
votes
2answers
192 views
Regex str_replace
Would it be possible to incorporate a str_replace method with a regular expression, designed to catch url strings in a simple html < textfield > input type?
I'm considering something simple like a ...
0
votes
0answers
88 views
Saving non-ASCII text to a mysql database
I want to save a value containing — in my mysql database.
A echo before inserting the data in the database is fine, but when I look in the database it is saved like —.
I already added the following ...
0
votes
0answers
126 views
str_replace fails when meets apostrophe into the string
i'm trying to replace every accent or special chars from a string but when str_replace meets an apostrophe it doesn't work as I need... please, how to avoid?
The input file is from csv (ISO-8859-1 or ...
0
votes
3answers
79 views
MySQL return all results without duplicating data
This is my data
id cost cat foreign colours
--------------------------------------------------------
385_white 99 swarovski 12 black;blue
386_white 99 ...
0
votes
1answer
75 views
Replace a space with a +
Hi all Im haveing a small problem with MySql, basically I'm pulling in a variable from a table entitled addressone which is varchar 255! that thing I am trying to achieve is replace the space between ...
0
votes
3answers
161 views
Remove ¶ from string with php
I want to remove the ¶ paragraph mark from a string.
I've already tried strip_tags and preg_replace, but its not working. The string is located in a mysql record. I've tried removing it before I save ...
1
vote
1answer
118 views
Weird str_replace output from array
This is similar to one of my previous questions here, although this is looking for a solution rather than tools to debug it. I'm trying to build a script to (amongst other things) automatically ...
0
votes
2answers
149 views
How to update/delete a single word in a line of text
I need your help with a slight problem I have. How can I update a portion of group of text separated by comma. When the text is entered into the database, it's a single line of text with commas ...
0
votes
1answer
133 views
Php Str_replace with a for loop
I'm trying to give each textarea a name so I can use them later to send back to the database.
With this code I got some weird results and I guess its because I use str_replace.
Here's the code:
...
0
votes
1answer
70 views
Mysql marge 5 columns into one and repleace row
So i have question:
SELECT worker_ID as widp, DAYS, MAX(ID_WERSJI) max , funcion1 as FUN1,function2 as FUN2,function3 as FUN3,function4 as FUN4,function5 as FUN5
FROM `grafik201105`
...
4
votes
2answers
79 views
Modify many rows in a mysql database at the same time
I have a database with prices from lots of different products. They're all in this format:
£25,000.
What I want is the following: 25000.
I figured I must use a foreach loop and use str_replace, ...
1
vote
5answers
246 views
str_replace only replace specific occurence?
I have this SQL command:
$sql = "INSERT INTO foo (value, value2, value3)
VALUES (value1, value2, value3)";
And I want to replace the first ) with , custom_value),
Similarly the second ) ...
-1
votes
1answer
285 views
How can I change form “spaces” into “%” to fix my search bar?
My PHP/Mysql search bar needs each individual word to have a "%" in-between to get it to work.
Does anyone know how to replace the SPACES sent to the url with a "%" instead of the default "+"?
Eg:
...
-3
votes
2answers
161 views
Str_replace not removing tags in message string
I echoing the contents of a table using foreach, the problem I am getting is the date is always at the top of the page, so when looking at my one line preview I just get the date and nothing more. If ...
0
votes
2answers
72 views
First name field is being inserted into emails twice
I am using the following code to send out emails, the problem I am having is that when I send an email, the persons name is imported just fine as long a the fuel type, but some some reason it seems ...
1
vote
2answers
156 views
More than one instance of str_replace breaks php code
I am using phpmailer, and have customised it for my needs. Inside $templatemessage is the message to the customer with the fields {name} and {fuel}.
These two fields are replaced with the str_replace ...
-2
votes
2answers
135 views
Strange glitch with str_replace in my php script
I am having a strange problem with str_replace in my php code below. What is supposed to happen is on each loop it is supposed to replace {name} with the person's name pulled in from the database. ...
0
votes
1answer
68 views
Using str_replace to replace {name} with the persons name
I am using the following code to try and get the persons name which is held in $name and changing the {name} field in the email body array $body with the persons name held in the $name value which has ...
0
votes
3answers
474 views
PHP query Changing a result of 1 to YES
I have a section of code where I call a set of results with a querry and then email the results as a CSV. One column of my results return either a 1 or a 0. I would like it so that when the CSV is ...
0
votes
2answers
134 views
Simplify PHP Script for SQL Query
I'm a self-taught, beginner programmer. Recently I've been working on a PHP script to query a database with user-entered keywords. What I've come up with seems much more complicated than it needs to ...
0
votes
1answer
62 views
static img filename link in database-text, or “replace” function in database / asp.net.( together with urlrewrite)
A site I am currently working with allows users to upload images onto a page together with some text they write.
like a blog or logbook.
I use tinymce to let them edit the text and add images.
due ...
0
votes
2answers
84 views
Why isn't the mysql database updating in this case?
I have this PHP script:
require_once('global.php'); //connects to db and various functions used
//select the user's information
$statement = $db->prepare("SELECT * FROM user WHERE id=1");
...
1
vote
2answers
113 views
Remove spaces from $contactname php
I am trying to remove the spaces from $contactname. Right now if I view the code below I get:
First Last
If I replace $_SESSION['name'] with 'first last' I get:
firstlast
Any ideas on why this is ...
0
votes
1answer
116 views
php: how can i change Stored value into user friendly values !
the problem in short,
Field:ProfileItems = "action,Search,Work,Flow,pictures";
Mysql query = "SELECT ProfileItems FROM addUsers";
then I explode with , making array e.g.: ...
0
votes
2answers
528 views
php foreach loops only once with dynamica data
I would like the output to be displayed like this:
category1
subcategory1.1
subcategory1.2
category2
subcategory2.1
subcategory2.2
Etc...
I believe it is an issue with str_replace()
I'm not sure ...
1
vote
1answer
492 views
replacing dynamic text with an image
I am trying to create a simplified code to insert images dynamically into a page based on user entry similar to BBCode.
For example, if one of my users types "I like ducks [image]ducks[/image]", I ...
2
votes
3answers
2k views
Replacing \r\n (newline characters) after running json_encode
So when I run json_encode, it grabs the \r\n from MySQL aswell. I have tried rewriting strings in the database to no avail. I have tried changing the encoding in MySQL from the default ...
0
votes
3answers
146 views
Replacing keywords in text with php & mysql
I have a news site containing an archive with more than 1 million news.
I created a word definitions database with about 3000 entries, consisting of word-definition pairs.
What I want to do is adding ...


