php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "start program"

How can PHP be used to start a Windows program?

To start a Windows program using PHP, you can use the `exec()` function to execute the program with the appropriate command line arguments. Make sure...

What is the best method in PHP to start a program (exe) without waiting for it to finish?

To start a program (exe) without waiting for it to finish in PHP, you can use the `exec()` function with the `&` operator at the end of the command. T...

How can a PHP script use proc_open to start a specific program when a link is clicked?

To use proc_open in a PHP script to start a specific program when a link is clicked, you can create a PHP file that will execute the program using pro...

How can the exec() function be used in PHP to start a program in the background?

To start a program in the background using the exec() function in PHP, you can append the command with " > /dev/null 2>&1 &". This will redirect the o...

How can PHP be used to start and stop Windows programs?

To start and stop Windows programs using PHP, you can use the `exec()` function to execute commands in the command prompt. To start a program, you can...

Showing 1 to 5 of 4489 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 897 898 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.