Integration of ZOHO CRM with MySQL using PHP...! - php

I have one problem in ZOHO CRM Developement.
Scenario:-I have account of ZOHO CRM.when i create Leads in my ZOHO CRM also at the same time the record will get created in MySQL Database(My Local Database) with same values and i want to do it using PHP Code style.so please suggest me a some solution on this functionality.

In that case you need to analyze database structure of leads related tables and then prepare mysql query for the same.

Please follow these steps.
Get the data from zoho crm api using php, (php code for this available on google )
Map crm data fields with mysql table fields
Simply insert into mysql table.
You can upload your code at server and use in zoho as a webhook that trigger on record create event from zoho automation rule.

Related

How to build a basic web app on WordPress site using AWS API Gateway

I want to build a simple Software-as-a-service web application that performs web scraping - the result per execution will be a table of results with several rows and columns. For the front-end, I wanted to build the website using WordPress since I am familiar with making basic websites there and like the plugins available. For the backend I plan on using AWS Lambda to perform the task serverless-ly. The user will log in to the site, then when they want to use the service will enter some keywords via a form, and that will send HTTP request to AWS API Gateway, which is connected to my Lambda function. Currently, the AWS Lambda function writes results into AWS DynamoDB as it goes - perhaps I need to write a second HTTP request method to query the results, or return the results in the same method that scrapes them instead.
Even after hours of googling, there are several areas in which I am unsure how to proceed, or if I have chosen the right path (I have no prior experience in this area.) Two of the biggest puzzles I have currently though are:
How can I use WordPress to send data to AWS API Gateway? Do I need to write some PHP code and if so what does it look like and where should I put it?
How can I present the results on WordPress site for the user? Should I keep the results saved on DynamoDB and query them when I want to present them, or should I store the results on the WordPress database? Ideally they would see a big table and have options to export to CSV, for example.
Thanks for your help and patience.
Cheers,
jack
There are a couple of possible ways this can be accomplished. One way is to just use webhooks. Most form plugins come with the option to use webhooks and doing it this way is pretty straightforward. Here is an article from WPForms on how to configure it WPForms and Webhooks. Below is an example of how I have used it. The example shows a form that sends data to AWS API Gateway which triggers AWS StepFunctions and also puts the customer information in DynamoDB
WPForms Webhook to AWS API Gateway

How to get push notifications in flutter, when database(MySQL) table change (insert, update, delete) occurs?

I know how to create a simple notification in Flutter app , but I want to create a real time push notification whenever database(Mysql) table will update/change. I'm using PHP to send/get data from MYSQL database table. Is there any way to get notify the user when there is a change/update in database specific table.
Use Firebase Cloud Messaging https://firebase.google.com/docs/cloud-messaging
You can call the API via PHP. Here is the example Sending Firebase notification with PHP

Import customer register information from PHP site into Microsoft Dynamics CRM 2011

I spend a lot of time and searching and i don't find any solution for connect to my company crm and inser register customers information into the contact list crm.
my site backend is php.
Is there a solution for conncet to Dedicated crm company and insert my costomer info such as name and phone , ... to contact list of it?
Where do you store these contacts information at the moment? If the answer is database then I would suggest using ssis in combination of CRM web services.
link
You can get the guid from inserted record back in to your source database so next time you run the package it knows if the record is new or already exist.

Creating a User Account on Dynamics CRM from PHP using SOAP client

I am writing a PHP code that will create a User Account on Microsoft Dynamics CRM 4 API using the SOAP client. In API's fieldset there are many types of fields among the required fields (strings, boolean, lookup and picklist). So I'm sending the request with values for these fields. All the fields are handling by CRM server except those fields which's types are "picklist". They are coming to server blank. I can't find out why. Please help with syntax and etc. to create a user on CRM containing a picklist type field.
Are you using the Picklist class when setting your attribute?
E.g (Taken from Microsoft Forums):
DynamicEntity entity = new DynamicEntitty("name of your entity");
entity["picklist field"] = new Picklist(<integer value of picklist>);

Google Checkout and PHPMyAdmin

I am creating a website with a google checkout link that lets customers purchase a digital product. This digital product is a credit to their account on the site. Therefore, I need to know how to make the completion of a google checkout order change a field in my PHPMyAdmin database. I would very much appreciate your answers.
phpMyAdmin is merely an administration interface to a database called mySQL.
Consider working through a basic PHP / mySQL tutorial first to get a fundamental understanding how these things work - especially if you're programming things in connection with commercial activity.
https://stackoverflow.com/questions/1610543/recommended-way-to-learn-php
However, a good and complete code sample that you could derive from can be found here:
Good tutorial on how to update your Mysql database with a PHP form?
You need to implement a web service on your server as described in the document Implementing the Notification API. You can do whatever you want in your web service when you receive a notification, including updating your data base.

Categories