Search found 4 matches
- Tue Mar 16, 2010 12:42 am
- Forum: PHP - Security
- Topic: backlink
- Replies: 5
- Views: 1751
Re: backlink
Backlinks are essential to get traffic to your site. People won't go to it if they don't know it even exists, right? Backlinks have different values though. The PR of the site it's coming from really affects the value of the link (for example, a backlink on a PR5 site will be thousands of times more...
- Mon Mar 15, 2010 6:40 am
- Forum: Javascript
- Topic: Javascript
- Replies: 1
- Views: 575
Re: Javascript
In c++ it's sleep and in c# it's wait. Usually those types of things are more on the simple side. Something like java wait command not have completely idea.
- Fri Mar 12, 2010 7:09 am
- Forum: PHP - Theory and Design
- Topic: Why to close a mysql connection?
- Replies: 6
- Views: 1760
Re: Why to close a mysql connection?
When using something like cgi, it's completely unnecessary to close your mysql connections since they close automatically at the end of script execution. When using persistent technologies , which maintain your connections between requests, then it's important to keep track of connections, global va...
- Fri Mar 12, 2010 6:59 am
- Forum: PHP - Code
- Topic: mail() funtion is not sending mails to yahoo,gmail,hotmail
- Replies: 4
- Views: 129
Re: mail() funtion is not sending mails to yahoo,gmail,hotmail
There is a possibility you did not set proper header data, and those emails are blocked even before reaching folder.
Try adding something like this:
$headers = 'From: your@email.com' . "\r\n" .
'Reply-To: some@email.com';
This is the fourth parameter of mail() function.
Try adding something like this:
$headers = 'From: your@email.com' . "\r\n" .
'Reply-To: some@email.com';
This is the fourth parameter of mail() function.