<?phpsession_start();error_reporting(0);include('includes/config.php');include('includes/sessionout.php');if(strlen($_SESSION['alogin'])==0) { header('location:index.php');}else{$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); //$connect = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); // $success =...
17 June, 2019
How to Import and Export CSV Files Using PHP and MySQL
Programing Coderfunda
June 17, 2019
php
No comments
<?phpsession_start();error_reporting(0);include('includes/config.php');include('includes/sessionout.php');if(strlen($_SESSION['alogin'])==0) { header('location:index.php');}else{$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); //$connect = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); // $success =...
12 February, 2019
Node.js Timer
Programing Coderfunda
February 12, 2019
Nodejs-Hindi, Nodejs-Timer
No comments
Node.js Timer - Node.js टाइमरNode.js टाइमर फ़ंक्शन वैश्विक फ़ंक्शन हैं। टाइमर फ़ंक्शन का उपयोग करने के लिए आपको आवश्यकता () फ़ंक्शन का उपयोग करने की आवश्यकता नहीं है। आइए टाइमर फ़ंक्शन की सूची देखें।टाइमर फ़ंक्शन सेट करें: setImmediate (): इसका उपयोग setImmediate को निष्पादित करने के लिए किया जाता है। ...
Node.js OS
Programing Coderfunda
February 12, 2019
Nodejs-Hindi, Nodejs-OS
No comments
Node.js OSNode.js OS provides some basic operating-system related utility functions. Let's see the list generally used functions or methods. Index Method Description 1. os.arch() This method is used to fetch the operating system CPU architecture. 2. os.cpus() This method is used...