Answers for "allow cors from the backend php localhost"

PHP
1

header cros orgin using php

<?php
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Headers: *");
...
Posted by: Guest on August-21-2020

Browse Popular Code Answers by Language