Answers for "how to enable cors in index.php"

PHP
1

php cors all

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Headers: *");
Posted by: Guest on November-17-2021
1

how to allow cors through header in php

<?php
 header("Access-Control-Allow-Origin: *");
Posted by: Guest on July-30-2020

Browse Popular Code Answers by Language