Skip to main content

Posts

Showing posts from January, 2017

how create pdf file in html or php using dompdf | dompdf how to use | dom pdf tutorial | dom pdf tutorial in core php

how create pdf file  in html or php using dompdf | dompdf how to use | dom pdf  tutorial  | dom pdf  tutorial  in core php   <?php /* dom pdf tutrial dom download dompdf use this command in cmd: - composer require dompdf/dompdf    */ include("vendor/autoload.php"); use Dompdf\Dompdf; $dompdf = new Dompdf(); $array=["Name"=>"Saddam hussain","company"=>"Spinks india pvt. ltd.","designation"=>"php webdeveloper","youtube"=>'http://localhost/php/dompdf/']; $data='<table style="width: 100%;" border="1" cellpadding="3"> <tbody>'; foreach ($array as $key => $value) { $data.='<tr> <td style="width: 13.9793%;">'.$key.'</td> <td style="width: 85.0207%;">'.$value.'</td> </tr>'; } $data.='</tbody> </table> ...

Spinks world laser and pad printing machine

Spinks world laser and pad printing machine Pad printing machines and laser marking machines manufacturers in India Pad printing machines and laser marking machines manufacturers in India Tampoprint pad printing machines in India, Spinks India pad printing machines Pad printing and laser marking machines manufacturer in India Pad printing and laser marking machines manufacturer in India Pad printing and laser marking machines manufacturer in India Pad printing machines and inks manufacturers in India Pad printing and laser marking machines manufacturer in India Pad printing and laser marking machines manufacturer in India Pad printing machines video, laser marking machines video Pad printing machines video, laser marking machines video Pad printing machines video, laser marking machines video RUCO Glass printing inks, Glass Pad Printing inks, Glass Printing inks, RUCO inks, decorative glass printing inks- Spinks India glass inks Tampoprint pad printing machines, P...

wordpress custom post time plug tutorial in hindi

how add admin submenu in wordpress plug in admin side bar

how add admin menu in wordress plug in admin sidebar

how add admin menu in wordress plug in admin sidebar

how add add menu in wordpres admin side bar

<?php /* Plugin Name: how add add menu in wordpres admin side bar  */ // now add admin menu function submenu_part2() { ?> <div id="wrap"> <h1>Sub menu 2 </h1> </div> <?php } function submenu_part3() { ?> <div id="wrap"> <h1>Sub menu 3 </h1> </div> <?php } function submenu_part1() { ?> <div id="wrap"> <h1>Sub menu 1 </h1> </div> <?php } function admin_menu_page() { ?> <div id="wrap"> <h1>how add admin menu</h1> <h2>add sum new submenu</h2> </div> <?php } function add_admin_menu_sidebar() { add_menu_page("how add admin menu ","How add admin menu","manage_options","parents_menu","admin_menu_page","dashicons-edit", 1); add_submenu_page( 'parents_menu',"how add sub menu","submenu 1"...

how to installs wordpress in hindi

how to installs wordpress in hindi view more tutorial click this link https://webprogramingpractice.blogspot.in/

html and php embedded code

php Tutotial

पंजाब में आगामी विधानसभा चुनाव को लेकर आम आदमी पार्टी ने अपना सबसे बड़ा दांव खेल दिया है।

सिसोदिया ने कहा, केजरीवाल होंगे पंजाब के CM उम्मीदवार! पंजाब में आगामी विधानसभा चुनाव को लेकर आम आदमी पार्टी ने अपना सबसे बड़ा दांव खेल दिया है। मनीष सिसोदिया ने दावा किया है कि दिल्ली के सीएम और AAP संयोजक अरविंद केजरीवाल पंजाब में सीएम उम्मीदवार होंगे। टीवी रिपोर्ट्स के मुताबिक मनीष सिसोदिया ने मोहाली की रैली में यह दावा किया है। बाबर-3 के सफल टेस्ट का पाक दावा फर्जी? बाबर 3 मिसाइल के सफल परीक्षण के पाकिस्तानी दावे पर सवाल खड़ा हो गया है। रक्षा मामलों के जानकारों की नजर में पाकिस्तान आर्मी ने मिसाइल परीक्षण का जो विडियो दुनिया के सामने पेश किया है, वह कंप्यूटर निर्मित है। बैंकों में जमा 3-4 लाख Cr रुपये पर IT की नजर नोटबंदी के बाद 60 लाख से ज्यादा बैंक खातों में 2-2 लाख रुपये से ज्यादा कैश जमा किए गए हैं। एक अधिकारी ने बताया कि नोटबंदी के बाद अघोषित आय का 3 से 4 लाख करोड़ रुपया बैंकों में जमा हुआ। उन्होंने बताया कि इनकम टैक्स डिपार्टमेंट इसकी विस्तृत जांच कर रहा है। पौने 2 घंटे बैठे मुलायम-अखिलेश, हुईं ये बातें! मुलायम सिंह यादव और अखिलेश के बीच चली पौने 2 घंटे ...

how install Swift mailer in localhost | swift mailer installation | composer install swift mailer

how install Swift mailer in localhost | swift mailer installation | composer install swift mailer Step 1:- open cmd  Step 2;- copy this command " composer required swiftmailer/swiftmailer @stable " . Step 3;- paste in cmd and press enter. Step 4;- after few second swift mailer ready to use ................................. 

how send mail using Swift mailer | switmailer send mail tutorial

how send mail using Swift mailer | switmailer send mail tutorial  <?php /* step 1 include Swift mailer file ;  */ include("vendor/swiftmailer/swiftmailer/lib/swift_required.php"); /* step 2 create your user details */ $senderEmail="saddam1234321@gmail.com"; $senderPassword="****Your password****"; $senderName="Saddam huassin"; /* step 3 set SMTP host  for sending mail  */ $user = Swift_SmtpTransport::newInstance('smtp.gmail.com','587','tls'); /* step 4 set your user details  */ $user->setUsername($senderEmail); $user->setPassword($senderPassword); /* step 5 create swift  mailer instance with a variable */ $mailer = Swift_Mailer::newInstance($user); /* step 6 Create a message */ $message = Swift_Message::newInstance('Wonderful Subject')   ->setFrom(array($senderEmail => $senderName))   ->setTo(array($senderEmail))   ->setBody('Here is the message itsel...

My first wordpress plugin | how create wordpress plugin | wordpress plugin tutorial

My first wordpress plugin | how create wordpress plugin | wordpress plugin tutorial <?php /* * Plugin Name: Mydb * Description: A short example showing how to add a taxonomy called Course. * Version: 1.0 * Author: developer.wordpress.org * Author URI: https://wordpress.slack.com/team/aternus */ /* ==============STEP 6================== */ function set_error($value) { echo "<div id='wrap'> <div class='error'> ".$value." </div>      </div>"; } if (isset($_POST['submit']) && isset($_POST['name'])) { if(!empty($_POST['name']) && !empty($_POST['email']) && !empty($_POST['text']) && !empty($_POST['url']) )  { Mydb_Insert_data($_POST['name'],$_POST['email'],$_POST['text'],$_POST['url']); }else{ set_error("all field are required"); } } function Mydb_Insert...

latest Rangoon movie | Trailer | Shahid Kapoor, Saif Ali Khan and Kangana Ranaut

#मेरा_बस_चले तो लड़कियों, महिलाओं पर होने वाले अपराध की सज़ा इतनी भयानक बना दूँ की कोई आदमी छेड़छाड़ से पहले सोचकर हीउसकी रूह कांप जाये👿 pic.twitter.com/4E6BbEiPKn — 💖💌अनसुलझी🎭NO RT.✍ (@shapendra) January 8, 2017

Link Blogger to Google Adsense