MySQL

How to create RESTful web services in codeigniter

restful web services in codeigniter

Last updated:24th April, 2021RESTful web services in codeigniter RESTful web services are a way of communication among computer systems. REST services are based on REST architecture. World wide web has resources like images, videos, web pages and other business information. Web service clients use URIs to request these resources. Response to the web service request can be in JSON, HTML, …

Read More »

How to generate RSS Feed using NodeJS and MySQL

generate rss feed using nodejs

Last updated:9th March, 2019Generate RSS Feed using NodeJS RSS (Rich Site Summary) is a way of delivering dynamically changing content. RSS is used to share information on internet mostly by blogs, news sites and publishers. In a previous tutorial we discussed how to generate xml using node js. In this tutorial you are going to learn how to generate RSS …

Read More »

Generate XML with NodeJS and MySQL using XML builder

generate xml with nodejs

Last updated:9th March, 2019How to generate XML with NodeJS XML is a popular information exchange and storage format on internet. XML is used in web services, RSS Feeds and many other technologies. In a previous tutorial we discussed How to parse XML using NodeJS, this article explains how to generate XML with NodeJS and MySQL. To access data from MySQL Node …

Read More »

How to create web services in php using NuSOAP library

web services in php

Last updated:7th April, 2024How to create web services in php Web services are software available on internet. They can communicate and provide information to client programs based on XML messaging. In this tutorial we are going to learn about how to create web services in php using NuSOAP. We will also look in to the basics of web services, SOAP …

Read More »

NodeJS Passport login script with MySQL database

nodejs passport login featured image

Last updated:22nd March, 2018NodeJS Passport login with MySQL User authentication is an important feature in today’s dynamic applications. This tutorial explores NodeJS passport l ogin with MySQL. In a previous Nodejs mongodb tutorial you learned about performing Insert, Update, Delete and View records, but these tasks need to be performed by an authenticated user. This tutorial explores this important feature. To …

Read More »

NodeJS MySQL pagination example for beginners with source code

nodejs mysql pagination example

Last updated:9th March, 2019NodeJS MySQL pagination example NodeJS is a popular open source platform used for creating web applications. NodeJS is based on Google chrome’s V8 JavaScript engine. It uses JavaScript as server side language and has non-blocking I/O, event-driven architecture. Top companies like GoDaddy, Groupon, IBM, LinkedIn, Microsoft,  Netflix and PayPal etc use NodeJS. In this tutorial, we are …

Read More »

php PDO and jQuery AJAX tutorial with example source code

Last updated:22nd March, 2021php PDO tutorial with jQuery AJAX PDO or PHP Data Objects is an extension of php that is used to access databases. In a previous post php MySQLi tutorial, we learned about mysqli extension. In this tutorial we are going to learn about php PDO library. mysqli extension is used with MySQL database only while PDO supports …

Read More »

How to generate xml files using php and mysql database

generate xml files using php and mysql

Last updated:5th February, 2022How to generate XML files using php XML is a popular data interchange and storage format used on the internet. XML stands for eXtensible Markup Language. Custom markups can be created in XML. XML was designed to describe data while HTML was designed for data presentation. In a previous tutorial we learned how to parse XML using …

Read More »