PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
The thing is some of the text has symbols such as ' in the words and when it's echoed it shows up as a ? instead of a ' some help would be nice thanks .
This would of course replace any valid question marks with ' so it's a little impractical.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
heh. Not that it's the most useful suggestion but you could always check to make sure it's not ? then a space, if it's not a question mark then a space then replace it with a ', otherwise leave it alone. Most people put a space after punctuation so that'd be a work around to your problem though certianly not a fix.
If you can infer from the code, as magic_quotes is on, it automatically escapes ' and \. you can strip it and use mysql_escape_string and if the output of ucwords(strtolower($string)) has escape chars you can again run stripslashes()