i want to create a bat file with while(1) loop and execute it with windows task schedule. It should be something like this:
While (1)
D:\wamp64\bin\php\php5.6.25\php.exe -f D:\wamp64\www\nmedica\index.php external python
Any thoughts?
solved it like this with cmd
@echo off
:begin
D:\wamp64\bin\php\php5.6.25\php.exe -f D:\wamp64\www\nmedica\index.php external python
goto begin