Is there any function i can use which will show an executed command line by line.. such as tracert instead of displaying output when its done like when you use ticks (`) Thanks
Nope.
In order to see something happen line by line, you need to "flush()" the output buffer after every printed line. When you run a system command, you can't flush until the command is finished.
Thx for your reply Vincent but i used System() command and it works great.. it automatcially flushes for u.
So it does...
PHP never stops to amaze me.