Search Results

2
votes

How do you find the difference between 2 strings in PHP?

This is going to give you a headache unless you define your porblem more clearly to start! Let's assume that str1 is "Amanda and Amy", and str2 is "Amanda and Amylase Amy". Is your function …
-2
votes

How to secure database passwords in PHP?

MD5ing both the real password and the user submitted one, then comparing the two is a generally accepted way of avoiding storing plaintext passwords anywhere. …
1
vote

php.ini & SMTP= - how do you pass username & password

Use Mail::factory in the Mail PEAR package. Example. …
0
votes

Replace one URL with another

function replace_url($text, $newurl) { $text = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', $newurl, $text); return $text; } Should work …
1
vote

Can I use a generated variable name in PHP?

If you're trying to collect the values of a POST, you should really use an array. You can avoid having to manually piece together such an array by using: <input type="text" name= …
0
votes

PHP: Current encoding used to send data to the browser

You can set your own with header('Content-type: xxx/yyy');, but I believe that text/html is sent by default. …