3 01, 2017

PHP | core.php and some important settings

2018-02-19T06:35:06+00:00January 3, 2017|Mobile, PHP Frameworks, Salesforce, Web Development, Zoho|0 Comments

|
| ByWebner

In CakePHP application, core.php is configuration file and is located at app/Config/core.php. This file contains various variable definitions and constant definitions that alter the behavior of the application. The description of some important variables and their effect on the application [...]

2 01, 2017

HTML Media Capture

2018-02-15T05:23:44+00:00January 2, 2017|Mobile, PHP Frameworks, Salesforce, Web Development, Zoho|0 Comments

|
| ByWebner

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 [...]

Go to Top