Articles

How to Create a Dogecoin Price alert with PHP

 How to Create a Dogecoin Price alert with PHP by Doctordroid Hi Guys it's Doctordroid , Knowing Dogecoin price when it's up or Down it's very important in the crypto world because it can help save a lot of money if you are investing or tading. So we gonna build a php script price alert that will alert us by mail(Gmail) every 30 minutes.  Let's start , Firtst we gonna use a PHP mail sender library to send the data to the mail sever with is Gmail, Second we gonna get the Dogecoin price via bitpay API this website has dogecoin price updated .  Let's build our script : <?php // Start the session //session_start();   header("Refresh: 1800"); //refresh the page every 30 minutes // Import PHPMailer classes into the global namespace // These must be at the top of your script, not inside a function use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; // Load Composer's autoloader require 'vendor2/autoload.php'; // Get the dogecoin p

Transfert PayPal a moncash Gourde en Haiti

Image
Service de transfer  d'argent de paypal a moncash.  Envoyez votre argent paypal en tout securiter sur notre compte paypal mizikayiti509@gmail.com   Vous recevrez votre argent en Gourde au taux du jour de la BRH sur votre compte moncash en Haiti.   U n client Haitien vient juste  de nous envoyer 18$ par paypal et a Recu 16$ au taux du jour de la BRH sur son compte moncash. Ecrivez nous sur WhatsApp pour plus de details: +1 443 585 0970 Tags: Transfer argent paypal moncash, paypal moncash, moncash paypal, paypal Haiti,  paypal transfert Haiti, Moncash paypal transfer

Achact Dogecoin en Haiti avec moncash Digicel Gourde

Image
Voici comment acheter du Dogecoin la crypto monnaie la populaire de l'année 2021 sur le site Haitien mizikayiti.tech  DEUX de nos clients viennent juste d'acheter pour un total de 41$ us sur le site mizikayiti.tech avec moncash en payant en gourde. Etaple 1: rendez vous sur le lien : https://mizikayiti.tech/dogecoin.php ETAPLE 2: Remplissez le formulaire ajoutez nom ,prenom, WhatsApp numero , votre adresse Dogecoin, le montant exemple 20$ Appuyer  sur enregistrer info. N.B: Pour avoir une adresse Dogecoin inscrivez vous sur le site Binance.com ou telecharger l'app TrustWallet sur playstore Etaple 3: La conversion du dollar en Gourde se fait automatiquement envoyer le montant indiquer sur le numero Moncash , Digicel vous enverra un sms contenant un txnID de 10 chiffres ajouter le dans le champs sur le site web et appuyer sur confimer. Vous recevrez  un email comme recu sur l'email que vous avez ajouter dans le formulaire. La video Comment acheter du Dogecoin

Vendez vos Bitcoin en Haiti avec Moncash Gourde

Image
Vente de bitcoin avec Moncash gourde. UN client nous a vendu pour 10.90$ de bitcoin sur notre website:  https://mizikayiti.tech/sellbtc.php pour chaque vente de bitcoin sur notre website le client recoit un email comme recu sur le mail indiquer dans le formulaire.  Le site web mizikayiti.tech est la reference pour vous achats et vente de bitcoin vous recevrez  le montant en Gourde sur votre compte moncash que vous indiquer Dan's le formulaire sur le site web.  ✅Achat de bitcoin avec moncash sur ce  website : https://mizikayiti.tech/transfert.php ✅Vente de bitcoin avec Moncash gourde: https://mizikayiti.tech/sellbtc.php ☎️WhatsApp pour acheter du bitcoin avec du dollar : +1 443 585 0970

How to insert and display a url link in a MYSQL database with PHP

Image
How to insert and display a url link in a MYSQL database with PHP To insert a URL link in a MySQL database, it suffices to encode the character string (STRING). Before inserting it into the database Example: $url = "test"; $url= base64_encode($url); Now once inserted, you have to DECODER it so that it can display correctly: $decode=base64_decode($url); Finally add it in an HREF tag: <a href='$decode'>URL</a> Step 1: create a database: CREATE DATABASE pacific; use pacific;  create table pacific(id int(10) NOT NULL AUTO_INCREMENT PRIMARY KEY  , nom varchar(100) not null, description varchar(255) not null, prix double , url varchar(255) );  alter table pacific add email varchar(25) NOT NULL; Step 2: Once your database has been created, here are the Code to insert data into the database. Copy and paste the code below into notepad ++ or other code editor. Give it to INSERT.php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"          

Comment acheter du Dogecoin en Haiti avec Moncash Gourdes

Image
VOICI comment acheter du Dogecoin en Haiti avec Moncash Gourde sur le site mizikayiti.tech. Etaple 1 : Rendez vous sur le lien  https://mizikayiti.tech/dogecoin.php ETAPLE 2: Remplissez le formulaire en ajoutant votre adresse Dogecoin. Ajoutez  : Votre nom, email, numero WhatsApp, adresse dogecoin(Trustwallet,Binance,Coinbase,etc) , votre montant en dollar exemple 15. Un adresse Dogecoin c'est l'adresse de votre portefeuille Dogecoin , une application comme TrustWallet ou Binance peut vous procurez  une adresse Dogecoin. Etaple 3: Appuyer sur enregistrez Info Etaple  4: Dans la nouvelle page envoyez le montant indiquez sur le numero moncash , vous recevrez un sms une txnID , une transaction ID de 10 chiffres ajoutez les chiffres Dans la case du site web et appuyer sur confirmer. Vous recevrez un recu sur le site web ainsi  que sur votre adresse email.  Et voila comment acheter du Dogecoin avec moncash Gourde en Haiti.  Video tutoriel comment acheter  du

How to open the camera with Command Prompt - CMD

Image
   Comment ouvrir la camera avec Command Prompt-Invite de commande - CMD Opening the camera can be a difficult exercise on Windows because with frequent use all Windows PCs become extremely slow. Here is a trick to open your LAPTOP windows camera quickly in one click with command prompt. 1) Open notepad: Click on the windows key + R, then type Notepad 2) Once notepad is open, write this command line: start microsoft.windows.camera: Save it on the name of OpenCamera with the extension .bat: OpenCamera.bat Explanation : start allows to execute a command, what it will do is launch the camera as soon as you click on the OpenCamera.bat file 3) Now that you have your file on the desktop, you can just click on it and the camera will open. Summary: This tutorial allows you to open the windows camera with a click on a file, the file must contain this command line: start microsoft.windows.camera: the file name can be any name but it must be followed by the .bat extension in our case we used th