WordPress | Dynamically generating ADF XML format of the form submission

| By Webner

ADF XML FORMAT ADF XML format stands for Auto-lead Data Format XML that is an automotive retailing industry standard data delivery format for import and export of automotive customer leads. This format is used as a way to format the

PHP | core.php and some important settings

| By Webner

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

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