[Solved] PHP sending post from file to file [closed]


yes, there are at least 4 ways

  • you can use curl (as long as you configure it to post),
  • php_cli via exec and run via the command line. (ensure you pass the params properly)
  • you can also use javascript and jquery and use a $.post command there
  • you could also simply include the second file (ensure you pass the params properly)

good luck with your coding 🙂

solved PHP sending post from file to file [closed]