Forum: PHP Jan 20th, 2009 |
| Replies: 4 Views: 1,052 What you want is a lamp, not wamp
Here you go: http://tinyurl.com/9qdkz2 |
Forum: PHP Oct 29th, 2008 |
| Replies: 7 Views: 2,358 $str = "%20";
$str2 = urldecode($str);
echo $str2;
-
Note, some browsers may change - to %20 automatically as long as it's in a link, and there's nothing you can do about it, AFAIK. |
Forum: PHP Oct 24th, 2008 |
| Replies: 5 Views: 1,270 While you can wrap at a certain amount of characters in plain text emails, I'm not certain about the ability to wrap at exactly 400 pixels.
What you can do is send and html email instead, and put... |
Forum: PHP Aug 17th, 2008 |
| Replies: 19 Views: 1,934 Also, session variables can be exploited if you are in a shared hosted environment.
Someone with ssh access to the shared server can get a valid session id from where PHP stores them and pretend... |