Skip to main content

Convert String To Bytes in Python

In our previous Python tutorial, you have learned how to convert string into array in Python. In this tutorial, you will learn how to convert String to Bytes using Python.

The conversion of strings to Bytes is very common due to a lot of file handling and Machine learning methods require you to convert them. The strings are human-readable and in order to become them machine-readable, they must be converted to byte objects. This conversion also enables the data to be directly stored on the disk.

Python has a build-in method bytes() and encode() to convert string into bytes. So here in this tutorial, you will learn how to use these methods to convert string to bytes. (more…)

Convert String To Array in Python

In our previous Python tutorial, you have learned how to convert string into Bytes in Python. In this tutorial, You will learn how to convert string to an array in Python.

String is the most used data type in any programming language. You can convert Strings into different data such as Bytes, JSON, Array, list etc. So here int this tutorial, we will expalin how to convert String into array using Python.

As in Python, Array is represented by List and we can assume list as an array. So, basicaly we will work on the list to convert string into list. Python has built-in split() and list() method to convert string into array or list. (more…)

Build Discussion Forum with PHP and MySQL

In this PHP project tutorial, we will explain how to develop your own discussion forum system with PHP and MySQL. We have created a running forum example in this tutorial and can download complete example code to enhance this to create own forum.

Forum systems is place for people where they can start discussions on topics. The forum is controlled by administrator or moderators who creates forum categories and manage permissions for forum.

(more…)

Online Exam System with PHP & MySQL

In our previous PHP project tutorial, we have developed Customer Relationship Management (CRM) System with PHP and MySQL. In this tutorial, we will develop Online Exam System with PHP and MySQL.

The Online exam system is a web application that can be used education purpose. The exam system allows to create complete exams with questions and its options. The exam access are given to users to complete exams in a given time. The system also allows its users to see their exam result.

(more…)

Customer Relationship Management (CRM) System with PHP & MySQL

In our previous PHP project tutorial, we have implemented project management system with PHP and MySQL. In this tutorial, we will implement CRM System with PHP and MySQL.

Customer Relationship Management (CRM) is a system to automate and manage the relationship between customers and company. The system covers customers relationship with sales and marketing department and also improve performance and increase productivity.

The CRM systems are always in demand as these are useful and widely used to track the customers and sales records. So if you’re developer and thinking about to develop a CRM system, then you’re here at the right place. In this tutorial you will learn how to develop CRM system with PHP and MySQL.

(more…)

User Management System with PHP & MySQL

In our previous PHP project tutorial, we have explained how to develop School Management System with PHP & MySQL. In this tutorial, we will explain how to develop User Management System with PHP & MySQL.

User management is an important part of any web application where users can create their account and manage. The users are allowed to register their account and login to access their account. The users are also managed by administrator to allow certain roles or update users info.

So if you’re looking for solution to build secure user management system then you’re here the right place. In this tutorial, you will learn how to create secure user management system with PHP and MySQL. You would also like to checkout Login and Registration System with PHP & MySQL to implement user login and registration. (more…)