I would like to write a little scipt that would allow a "sync" of the contacts from a mysql datbase to Outlook. Is that possible?
PHPMySQL ServerAJAX
Last Comment
Starquest321
8/22/2022 - Mon
striker46
You could write a script which retrieves values from the database and writes them to a text file. You can import into Outlook CSV files, namely text files with the data separated with ;
Rename the text file generated by your script to .CSV instead of .TXT and import.
I recommend you export some sample contacts with the desired fields to a test file in your computer, then you open it with notepad or any other text editor to see how Outlook formats the values and separates them with ;. Then you'll see how you must make the script write the files...
Rename the text file generated by your script to .CSV instead of .TXT and import.
I recommend you export some sample contacts with the desired fields to a test file in your computer, then you open it with notepad or any other text editor to see how Outlook formats the values and separates them with ;. Then you'll see how you must make the script write the files...
Regards