Category: PHP Frameworks
Validation vs. Application Rules In CakePHP
CakePHP uses a two-layered approach to validation: 1. Validation It determines basic validity. It ensures that the data types, size, and format of data are correct. When we call newEntity() or patchEntity() methods, validations are triggered. For example, checking if
Methods of Debugging – PHP
Methods of Debugging by dumping information These methods are used for debugging in PHP. We can see the variable values in human-readable form on the console and can find errors in case there are issues due to variables incorrect values.
Collections in C#
Collections in C# Arrays Arrays are useful for creating and working with a fixed number of strongly typed objects. Problem with Arrays: 1. Fixed length 2. Insert similar data type elements Collections Collections are used to create and manage groups
Progress Bar Using AJAX/PHP
Progress Bar For Large Uploads Using AJAX/PHP Problem: When large files are being uploaded, a server at the back takes time to upload the same file. Users have to wait irrespective of knowing, whether the file is even being uploaded
How to set the values of Metadata (column fields) of Sharepoint Documents
How to set the values of Metadata(Column fields) of Sharepoint Documents Here is the code in C# which helps you to change the metadata field values of Sharepoint Files. //This manager class can be used to obtain a SharePointContext object
Paytm gateway integration in PHP
Paytm gateway integration in PHP Paytm is a very popular way to make payments these days. To integrate Paytm in our site we need to follow the given steps – Step 1. First, we need to create an account at
Fill a PDF form using C# console application
Fill a PDF form using C# console application We will be using the SyncFusion Package to fill out the PDF Form Fields. To add SyncFusion to your project follow these steps : 1. Go to Tool -> NuGet Package Manager
Showing Deletion Confirmation box in Laravel datatables
Showing Deletion Confirmation box in Laravel datatables Datatables are the finest way to show the larger number of records to the user on a single page as it provides so many features like sorting, pagination, etc. Sometimes we need to
Deploy the laravel project on 1&1 production server
How to deploy the laravel project on Shared hosting server On shared Environment: Step 1: Push the code to Production Server. I’m assuming that your project is running perfectly on your localhost and now you are ready to push it