-
Webite for ebook
Wednesday, 26 December 2012
http://www.wowebook.bePosted by Unknown at 22:05 | Labels: websites | 0 comments | Email This BlogThis! Share to X Share to Facebook |
-
SMTP configuration in Xampp server to send email in php
Friday, 21 December 2012
Only have to modify 2 ini files: php.ini and sendmail.ini
1)look for mail function in php.ini(c:/xampp/php/php.ini)>>[mail function]
change the following::
SMTP=smtp.gmail.com
smtp_port=587
sendmail_from = [your_gmail_username]@gmail.com
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
NOTE: remove ; if it present before above lines.
2) next modify sendmail.ini(c:/xampp/sendmail/sendmail.ini)
comment the mercury as shown below
# Mercury
#account Mercury
#host localhost
#from postmaster@localhost
#auth off
# A freemail service example
#account Hotmail
#tls on
#tls_certcheck off
#host smtp.live.com
#from [exampleuser]@hotmail.com
#auth on
#user [exampleuser]@hotmail.com
#password [examplepassword]
then paste the following lines:
account Gmail
tls on
tls_certcheck off
host smtp.gmail.com
from [your_gmail_username]@gmail.com
auth on
user[your_gmail_username]@gmail.com
password x
port 587
# Set a default account
account default : Gmail
Again SAVE your changes.
Use the code below to test if it's working!
<?php
$subject="Test mail";
$to="someone@whatever.com";
$body="This is a test mail";
if (mail($to,$subject,$body))
echo "Mail sent successfully!";
else
echo"Mail not sent!";
?>
Refer:
http://www.daniweb.com/web-development/php/threads/347696/sending-email-from-localhost-in-xampp-windows
http://expertester.wordpress.com/2010/07/07/how-to-send-email-from-xampp-php/
Posted by Unknown at 04:35 | Labels: php | 4 comments | Email This BlogThis! Share to X Share to Facebook |
-
Jquery Prompt box
Thursday, 20 December 2012
Jquery Prompt box
http://trentrichardson.com/Impromptu/Posted by Unknown at 05:09 | Labels: jquery, Js, websites | 0 comments | Email This BlogThis! Share to X Share to Facebook |
-
Cakephp onclick() event for link
<?php echo $html->link('Buy It',array('controller' => 'controllername', 'action' => 'functionname',$param), array('onclick' =>"return getnumber()",'escape' => false)); ?>Posted by Unknown at 05:06 | Labels: cakephp | 0 comments | Email This BlogThis! Share to X Share to Facebook |
-
Websites to know phpframeworks!!
Wednesday, 19 December 2012
To know details about phpframeworks
http://www.phpframeworks.com/
To get meny details about php
http://www.hotscripts.com
Plugin for cakephp with all features used in DBuy
croogo.org
Shopping cart plugin for cakephp
Vamcart
http://vamcart.comPosted by Unknown at 04:01 | Labels: cakephp, php, websites | 0 comments | Email This BlogThis! Share to X Share to Facebook |
-
Websites to know
Monday, 17 December 2012
http://www.oneindia.in/
http://www.network18online.com
Posted by Unknown at 21:38 | Labels: websites | 0 comments | Email This BlogThis! Share to X Share to Facebook |
-
http://www.wordhippo.com/
http://en.bab.la/dictionary/Posted by Unknown at 03:25 | Labels: vocabulary | 0 comments | Email This BlogThis! Share to X Share to Facebook |