Tagged Questions
0
votes
0answers
22 views
parsing special characters in php mailing script
I wrote a simple php script to send emails from my server for a contact form.
I am seeing responses with special characters such as quotation marks coming out as " and such in the emails.
It ...
1
vote
1answer
17 views
Check for spaces using regex
I'm using regex (I think that's what it's called - haha) to check my users' name to make sure it's valid. I want to make sure that the user doesn't have any characters. Just letters and spaces. I've ...
-1
votes
0answers
20 views
Show 200 characters of mysql, in this format
I need to only show 200 character of the 'review' (which is 800-900 characters long) on my homepage.
The php code i use is this
<?php echo htmlspecialchars($row->review); ?>
I need it to ...
1
vote
1answer
33 views
how to strip alt character code with php
I'm using this code to strip unwanted characters from a string, but I have a big problem with ALT+0160 character which is a non break space. I need to remove it as well
$name = str_replace ("'", ...
1
vote
0answers
43 views
Sorting å, ä, ö - gets mixed with a / o
Using WordPress and PHP, I'm creating a list of tags on a site sorted by their first character,
<?php
$letters = range( 'a','z' );
array_push( $letters, 'å', 'ä', 'ö' );
foreach ( $letters as ...
-2
votes
1answer
37 views
PHP - replace character referring to another character sequence in the array
i have
$a='1024,1025,0000|1020,0000|';
$b='1024,1025,0000,1020,0000,';
i want replace commas (,) in $b with (|) so that $ b is equal to $ a
like this
Output :
...
1
vote
0answers
60 views
PHP only store 1048576 characters in array
I'm working on a project that parses huge text files and store some of the information in MySQL DB. I noticed one of the field was missing info when it was displayed, however, when checking the DB ...
0
votes
2answers
34 views
Manipulating individual strings based on characters from an input in PHP
I'm wondering how to manipulate individual characters in a string in PHP. I've searched all over and can't find anything that answers this type of question. I want to take a string that's submitted ...
0
votes
1answer
55 views
How To Set character_limiter() in Codeigniter
I'm new to Codeigniter. Now I want to set the character limit in the view. First, get the data from the database with $query_result->result(), and then show it in the view using foreach().
Here is my ...
0
votes
4answers
37 views
Strip everything ater second slash
If I have the following URL:
http://www.mysite.com/games/topgame
how do i use php to remove everything after the last "/"?
So I would be left with:
http://www.mysite.com/games/
I have tried this:
...
1
vote
1answer
32 views
Salvage Hebrew from MySQL column with wrong character set
So stupidly I've stored hebrew in a MySQL table with the wrong character set. I realised after an influx of data was entered and I'm wondering if it's still possible to access that data. I've since ...
-2
votes
1answer
48 views
Change characters in PHP
I have a problem with a replacing characters, I do not know how to do that.
We in Slovakia have characters with interpunctions.
How do I change (eg. á) for html code at input. If I have a string ...
2
votes
3answers
88 views
How to remove unnecessary characters from string?
There is a problem in character when I fetch data from database.
doesn�t
It�s
I have tried to remove it using str_replace function but it's not working.
str_replace('�','',$str);
The encoding ...
0
votes
2answers
64 views
php code to validate alphanumeric string
I want to validate alphanumeric string in form text box in php. It can contain numbers and special characters like '.' and '-' but the string should not contain only numbers and special characters. ...
1
vote
1answer
22 views
wordpress plugin function that will return the character count of the post being saved
I need to have a function that will get the content of the post being saved, count the characters including punctuation and spaces and return a number.
i could use $text = mb_strlen($text, "UTF-8"); ...
2
votes
2answers
216 views
PHP/jQuery to submit/save input with all special characters value
Example..
HTML :
<input type="hidden" value="">
PHP :
<input type="hidden" value="<?php echo $value;?>">
jQuery :
$("input:hidden").val(text);
If text(JS variable) is free ...
3
votes
2answers
71 views
Apache or PHP generating prepending line feed character
I am trying to generate an XML file in a PHP web application:
<?php
...
header('Content-Type: application/xml');
header('Content-Disposition: attachment; filename=test.xml');
echo "<?xml ...
0
votes
2answers
90 views
PHP: Special Characters Conversion
I have this problem where I converted a special character to be put on the URL as a parameter using Javascript Ajax request and then reads it to PHP. The character is "Ñ".
In my javascript I put the ...
0
votes
2answers
160 views
How are \r \t and \n different from one another? [duplicate]
In the code below, I don't know how these characters are different functionally from one another: \r \t \n. Does anyone have an explanation or description for these?
Here is some sample code:
...
0
votes
2answers
49 views
How to post a Facebook Photo having 2 space characters using Facebook PHP SDK?
I wanted to upload a photo to FB using the FB PHP SDK that has 2 space characters side by side but apparently with HTML only one space character is displayed. Using Javascript SDK on feed posts, I ...
0
votes
2answers
144 views
jQuery Minimum Character Counter for Codeigniter Textarea
I'm struggling to get a minimum character counter to work with CI / jQuery. I want to be able to prevent form submission and display an alert if the user has entered too few chars. The form just ...
0
votes
2answers
311 views
html entities not converting special characters
I'm using htmlentities which is converting characteres with accents, but it is not converting this type of quotes “. Instead the browser shows a weird symbol with a question mark �
How can I convert ...
0
votes
2answers
45 views
How to get a list of all Latin based alphabet characters but exclude 'special characters' in PHP
I am working on a PHP based system that is planned to be rolled out around Europe and for a certain form field I am trying to limit input to just alphabetical characters only.
However, this could ...
0
votes
2answers
76 views
Output Weird Characters To Screen in PHP
I am trying to output to the screen strings that contain odd characters such as ® ™. When I do so, � replaces all the odd characters. I have tried looking into htmlentities() but that did not output ...
0
votes
2answers
57 views
how to transform japanese english character to normal english character?
I have an japanese english character.
This character is not normal english string.
Characters: Game
How to transform this character to normal english character in php?
0
votes
1answer
25 views
Charset in index page with SQL queries
In my index.php I have some fixed text written with specialchars (for ex. è à ä ö).
I also have a query wich post text coming from a database. This text has also spcialchars.
The database is setted ...
0
votes
1answer
129 views
getting parameters from url in php adds special characters
I have a javascript code that calls a function of a PHP api to insert a row in my database.
var url = ...
1
vote
1answer
50 views
Accessing PHP objects using both naming with reserved characters (-,@) and indexes (0)
In PHP figured out how to use {name-with-reserved-chars} notation to access object data after JSON decode but I also have index values as well in the path (like [0]). My attempts to add the index ...
0
votes
6answers
270 views
PHP Cut String At specific character
$string = "aaa, bbb, ccc, ddd, eee, fff";
I would like to cut string after third , so i would like to get output from string:
aaa, bbb, ccc
Many Thanks.
0
votes
1answer
130 views
How do i shorten the data-text appear in my post for my website
I am trying to adjust the character display of a post in my website, but no matter how I change the codes. it either cuts off to 1 word or have an error. please help on this, what should i do?
Here ...
0
votes
2answers
303 views
php: SimpleXML Load File Invalid Character Error
I have a php application which -sometimes- fails (depends on what data I load) and gives errors like:
parser error : PCDATA invalid Char value 11
Warning: simplexml_load_file(): ...
-1
votes
1answer
68 views
How to store a fraction as a character in MySQL so it can be outputted within text [closed]
I am trying to store the fraction 3/5 (three fifths) as a character in MySQL so that it outputs in php like the symbol ½ within a line of text. I am using phpMyAdmin.
The code for the fraction 3/5 ...
0
votes
2answers
204 views
Strange characters in PHP echo resulting in invalid JSON
I am using echo in php to return a database request. When trying to decode the result in Flash I get errors telling me of unexpected characters. When I looked at the output in the browser it looked ...
4
votes
2answers
49 views
Strange string behaviour with character '¡'
Please, have a look at this:
$str = '¡hola!'; // '¡' is the spanish opening exclamation mark
echo $str{0}; // prints nothing
echo $str{1}; // prints �
echo $str{2}; // prints h
The php script has ...
0
votes
4answers
66 views
Checking a character on a string
How can I check every character on a string on php?
For example I have this string.
$a = "sd qwerty utr";
I want to know the first of the string and get the 1st 3 characters, then I want to get ...
4
votes
2answers
169 views
PHP Remove Punctuation (No Dashes)
I found the below script here on stackoverflow and it replaces special characters with dashes for the purpose of clean url building. But, it doesnt do it well as it replaces punctuation with dashes as ...
10
votes
4answers
212 views
Check the word after a '@' character in PHP
I'm making a news and comment system at the moment, but I'm stuck at one part for a while now. I want users to be able to refer to other players on the twitter style like @username. The script will ...
1
vote
1answer
107 views
php 5.3 CLI junk characters
I am facing problem like whenever I run a simple php script from the command line, it is showing some junk character before it.
I am using php 5.3.9 on wamp server on windows 7.
Here is my code of ...
0
votes
1answer
55 views
Weird character when php file is embeded in jquery
I'm encountering a problem with displaying content of a php file via jquery. The content is http://pastebin.com/V8RxqPe3
Here is my problem:
If that content is in a mysql database, content.php file ...
1
vote
2answers
47 views
How to limit what users can type into a form(Must have @ in field)
I'm trying to stop a little bit of spam from my form. It's an email list and just takes any text in the box and submits it into my database. Is there a way that I can make it so it checks that the ...
0
votes
2answers
97 views
Non latin symbols in url, php
If use in url, non allowed character, for example space:
<a href="pa ge.php">link</a>
and click this link, in browser addres bar I see mysite.com/pa%20ge
okay, and if now I use ...
1
vote
0answers
80 views
How can I store characters like 【Ƹ̴Ӂ̴Ʒ into a MySQL database?
I don't know a lot about character sets like UTF-8, etc. etc. so I'm getting lost in the terminology from other posts.
I've been using a VARCHAR that is on the default collation in phpMyAdmin ...
0
votes
0answers
41 views
Ideas what this output means?
Could anyone tell what does this mean? What kind of coding is this? My error log in PHP gives the following kind of code:
\xc3\xb6m\xc3\xb6\xc3\xa4
What kind of list should I be searching for to ...
1
vote
2answers
69 views
How to delete specific character from a huge records in database MySQL?
I have many records in the database, and I would like to delete a specific character from all records in specific column.
for example I have this table
id cost distance
1 $1,519 21.5 miles
...
0
votes
3answers
85 views
PHP - how to get array value by key received from GET
How do I Loop through all phrases and output them as a list of links, with GET-parameters?
How do I make an array, indexed with integers then use a GET-variable to choose one of these phrases.
My ...
1
vote
1answer
55 views
Converting String to Character in PHP
I'm developing an application where it uses SOAP calls to another server. SOAP uses an WSDL(XML) which defines all properties and types of every object. All of the logic is being developed in PHP.
...
-6
votes
1answer
206 views
Characters, Strings And Arrays - PHP? [closed]
Make an array, indexed with integers, containing at least 5 famous quotes, sayings or similar phrases. At least one phrase must contain characters not present in the English alphabet/US_ASCII. You ...
-3
votes
1answer
96 views
function or method to check if only characters are entered [closed]
I am writing a script in PHP in which the username input box must contain only a to z characters and must not contain anything else.I dont know much about the inbuilt functions of PHP .I want to know ...
0
votes
3answers
335 views
Limiting characters for a text area [closed]
I have an options panel and in this options panel I have a text area with the id 'mytheme_about_me'.
I would like to limit the characters for this text area. I've found many jQuery solutions but ...
3
votes
4answers
281 views
secured password with regular expression
I am very new to regular expression, I did a research and got a little understanding
what I need is a password that matches those specifications
any alphabetic character (at least one)
any numeric ...



