Moodle | This page should automatically redirect

| By Webner

In my plugin code I was trying to redirect from one page to another page using redirect as follows: redirect(“success.php?cd=”.$id); Redirecting to the other page was working but during redirection an intermediate page was being displayed like this: On click

HTML Media Capture

| By Webner

How to access Camera and upload the image/video to server? We can achieve above requirements easily by using HTML Media Capture : <form action=”upload.php” method=”post” enctype=”multipart/form-data”> Capture Image: <input type=”file” name=”uploadedfile” accept=”image/*” capture=”camera”> <input type=”submit” value=”Upload”> </form> To capture Audio