How to Install Odoo 13 on Ubuntu 18.04
Follow the below steps to install Odoo 13 on Ubuntu 18.04 Here is the step by step description to install Odoo into ubuntu, use the commands available in these steps to configure…
RFID, Software Development and Physical Security
Follow the below steps to install Odoo 13 on Ubuntu 18.04 Here is the step by step description to install Odoo into ubuntu, use the commands available in these steps to configure…
PHP Image Upload The following code example illustrates how to handle image upload on your server using PHP as a server-side language. For step by step explanation of the upload…
Source Code index.php <?php //index.php $connect = new PDO("mysql:host=localhost;dbname=testing", "root", ""); $message = ''; if(isset($_POST["upload"])) { if(!empty($_FILES["select_image"]["name"])) { $extension = pathinfo($_FILES["select_image"]["name"],PATHINFO_EXTENSION); $allow_extension = array('jpg','png','jpeg'); $file_name = uniqid() . '.' .…
Source: How to upgrade to PHP 7.1 on Ubuntu & Debian | Ayesh Karunaratne
This brief tutorial walks you through the steps to switch between multiple PHP versions in Ubuntu Linux and its derivatives. This guide is officially tested on Ubuntu 18.04 LTS server edition. It…
Source: Migrating a PHP 5 App to PHP 7 (Tools & Implementation) – Part 3
Source: A Beginner’s Guide to the Python time Module – Real Python
Source: Getting Started — python-twitter 3.4.2 documentation
Source: pandas.read_excel — pandas 1.0.3 documentation