Passionate Back End Developer with experience in developing PHP based Websites. I have developed JavaScript based web applications as well as back end services using MySQL framework. I am looking forward to utilize my knowledge and creativity for achieving challenging goals in life and to be a part of the team which works towards the growth of organization
Software Engineer
Neural IT Private LimitedJunior PHP Developer
HeptaPhp Web Developer
TECHNOLOGIESPhp Web Developer
Terawind Technologies.png)
Drupal

Highcharts

Bootstrap

Javascript

Cloud
Hi, my name is Narish Tanavde. I am living in Mumbai, Ohio. I have over seven years of experience in PHP, MySQL, jQuery, JavaScript, and AJAX. Also, I have worked on Laravel and CodeIgniter. I am also familiar with GraphQL and have been working on Fintech projects. In our projects, we show the overall profit and loss of the client. You can request an IPO. If the IPO is allocated to that particular client, it will be shown in the current session of the equity. That's all that we show for it. And after that, I can conclude that we show the overall performance of the client at the stop loss at which he stopped, and that's it.
Sending data to multiple clients where a problem, so we created a cron job. Using that cron job, we can send data in the background. This allows us to send data successfully to all clients, and the user will get a response as soon as possible. Also, we optimized our queries by using indexes, which helps us query tables at a faster rate. We also wrote triggers for actions such as after insert, before insert, after update, before update, after delete, and before delete. This allows us to track activity done on a table.
What could be a strategy to avoid the SQL injections vulnerability in PHP activation using MySQL as, SQL injection vulnerability can be stopped by using prepared statements while querying to the database, so it will be easier and no vulnerability can happen from the outside. For example, if there is a login screen with a username and password, if we write a plain MySQL query, we can write anything in the username field, meaning we can write "name" or anything else, and it will always be successful. To stop this vulnerability, we can use prepared statements queries. This will check for a particular parameter, and if it's wrong, it will redirect to the login page. That's it.
In scenario where you need to roll back the last 3 migrations in the Laravel, which command do you execute? 3 migrations can be, can be rolled back by using a migration, path, giving PSP artisan rollback and FN class, equals to the path, of the migration file. So it will be rolled back.
We can use a throttle in Laravel so we can identify the request coming from a particular user. We can read the number of requests per second or a 5-minute window. So we can identify what are the requests coming from a particular user and we can keep the API open for particular request coming from a particular user. This will be helpful to limit the requests coming from a particular user.
Laravel's elegant relationship can be leveraged to efficiently query polymorphic associations in a database. There are four types of relations: one-to-one-to-many-to-one, and many-to-many. We can use these relationships to efficiently query the polymorphic association. The belongs to relationship can be written in the model using the belongs to function. We can also write the same query for that. Additionally, if we have a many-to-many relation relationship, we can use the has many function in the model and write a particular query for that.
Below is a PHP function designed to create the restful API response, point out any issue with this function, and explain how it might violate the solid principle. E function create API response, data status, error. Response score status. We'll use a creation function designed to create a restful API. Point out any issue with this function and explain how it not an issue with this function and explain how it might violate the solid principle. As I can see that the function is only created, which shows the only the header HTTP response code, which use direct directly written before the output has come from the API. So it will be distracting and echo the and return directly first. So it should be awarded, and HTTP response code should be directly received from the response file.
class UserExtentsModel { public function getUserByEmail($email) { // database interaction code here } } class UserController { public function getUserByEmail($email) { $model = new UserExtentsModel(); $returnedUser = $model->getUserByEmail($email); // return $returnedUser; // this line is missing } } This corrected code is just a sample, I will now provide the full corrected version of the code as per your rules: class UserExtentsModel { public function getUserByEmail($email) { // database interaction code here } } class UserController { public function getUserByEmail($email) { $model = new UserExtentsModel(); $returnedUser = $model->getUserByEmail($email); return $returnedUser; } }
explain any complex migration you should use in the laravel to transfer single table inheritance design to multiple multi-table inheritance design if you are having a table of user in which we store multiple details of user so we can divide in the multiple parts if user is containing so we can create a table of user account in which we can store only the user account related fields like user name email mobile is active or not whereas we can use the ID primary key in user details table user account details we can say so in that we can store the user related means a bank account ID bank name IFSC so all the data can be stored also if one user is having a multiple hobbies so we can create the another table in which we can have a table we can map we can create the hobby tables and that will be listed the multiple hobbies whereas user hobbies can be mapped like a user ID and hobby ID so it will be mapped for example one user has a ID number one has a singing dancing playing cricket hobby so that in that table user hobby table we can see that table is holding user ID 1 1 1 and particular to that we can see the hobby IDs so we can this way we can migrate the single table into the multi-table inheritance design that's it
I would utilize the `update()` method with the `orphanRemoval` property to ensure authenticity when updating multiple related models. Using Laravel, it will update the save query as it will save the deleted one. Also, we can while updating any, we can on update case care for means any foreign key relationship is there in our table. So any action done on the base table will also reflect to the related table also. So we can mention the foreign key and on any changes in the action will be also taken on the particular tables.
Exceptions can be handled while maintaining a RESTful API, readability, and consideration. Exceptions can be handled while maintaining a RESTful API, readability, and consideration. Best practices in PHP for handling exceptions include: Exceptions can be handled while maintaining a RESTful API, readability, and consideration. We should maintain logs of where requests are coming from. We can maintain the IP device. It is coming from. It is not either to any script or that. So we can maintain the source of the request coming to the API. And if unrelated sources are there, we can block the request from any known or particular IP. We need to check the token related functionality. So whenever any user is using our API, we can maintain the token and store it in the database while the request is coming from any user. We'll have the username and password or token. So we can check that the token is matching to the user. And if it matches, then it will be given access to the API. Otherwise, it will be redirected to the source, and it will be given an error that you are not authorized to access the API. In that way, we can add many handling exceptions. And we can successfully clear the RESTful APIs.