I’m using system() PHP function to run some curl commands like this system("curl command here",$output); but it displays results on screen. Any way to avoid this output?
I’m using system() PHP function to run some curl commands like this system(curl command
Share
You coud try using output buffering.