| 1 |
000015 |
Build a CRUD application in CodeIgniter ? |
कोडिगनिटेर में क्रूड एप्लीकेशन बनाए ? |
Create a database table. Create a Model to handle database operations (Create, Read, Update, Delete). Create a Controller to process user requests and interact with the model. Create Views for listing, adding, editing, and deleting records. Define routes for CRUD operations. Use CodeIgniter's Query Builder or Model methods to perform database actions. Test all CRUD functionalities and add form validation for data integrity. |
codeigniter |
| 2 |
000008 |
Can PHP run without a server ? |
क्या PHP बिना सर्वर के चल सकती है ? |
Yes, PHP can run without a web server. It can be executed directly from the command line using the PHP CLI (Command Line Interface), which is useful for scripts, automation, cron jobs, and Artisan commands in Laravel. However, to serve web pages to users, a web server such as Apache, Nginx, or PHP's built-in development server is typically required. |
php |
| 3 |
000014 |
Create a program to send emails ? |
मेल भेजने का प्रोग्राम बनाए ? |
Create a program to send emails in Core PHP. It should collect recipient details, subject, and message, then use PHP's mail() function or an SMTP library such as PHPMailer to send emails securely. Include proper validation, error handling, and success/failure notifications. |
php |
| 4 |
000009 |
Define class and object ? |
class और object को परिभाषित कीजिए ? |
A class is a blueprint or template that defines the properties (variables) and behaviors (methods) of an object. An object is an instance of a class that contains actual data and can perform the actions defined by the class. |
php |
| 5 |
000012 |
How will you upload the file to the server ? |
सर्वर पर फाइल कैसे अपलोड करोंगे ? |
I will upload the file to the server using SFTP/FTP or deploy it through the application's deployment process, depending on the project setup. |
php |