I\'m developing website that will send email back to user automatically when they registered to my website. I have searched from internet, most of them said that i have to used
If we assume that the script that you want to run is located at /home/me/myscript.php
then all you need to do is create a cron job that will run that script every minute.
Several hosting companies have an interface (cPanel for instance) that will allow you to add a cron task easily. You can also add the cron task by editing the relevant cron job and adding:
*/1 * * * * /usr/bin/php /home/me/myscript.php > /dev/null