Source Code

PHP Example - AJAX and XML
PHP Example - AJAX and XML AJAX can be used for interactive communication with an XML file. AJAX XML Example The following example will demonstrate how a web page can fetch information from an XML file with AJAX: Example Select a CD: Bob Dylan Bee Gees Cat Stevens CD …[ More ]
DOMDocument::schemaValidate
DOMDocument::schemaValidate (PHP 5) DOMDocument::schemaValidate — Validates a document based on a schema Description public bool DOMDocument::schemaValidate ( string $filename [, int $flags ] ) Validates a document based on the given schema file. Parameters filename The …[ More ]
Android HTTP Client: GET, POST, Download, Upload, Multipart Request
Android HTTP Client: GET, POST, Download, Upload, Multipart RequestHTTP ConnectionPost RequestDownload DataUpload DataMultipart RequestOften Android apps have to exchange information with a remote server. The easiest way is to use the HTTP protocol as base to transfer information. There are several …[ More ]
HTTP Connection with Handler
23.1 HTTP Connection with HandlerIn this example, we download an image and text from the web.Let's preview the whole Java code first, HttpURLConncecitonA.java:package com.bogotobogo.httpconnecta;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.net.Ht…[ More ]
Source Code magento_lib_Zend_InfoCard_Cipher_Pki_Adapter_Rsa.php _ Ritz Consultant
Source Code magento_lib_Zend_InfoCard_Cipher_Pki_Adapter_Rsa.php _ Ritz Consultant002./**003.* Zend Framework004.*005.* LICENSE006.*007.* This source file is subject to the new BSD license that is bundled008.* with this package in the file LICENSE.txt.009.* It is also available through the world-wid…[ More ]
XMLDiff\Base::merge
XMLDiff\Base::merge (PECL xmldiff >= 0.8.0) XMLDiff\Base::merge — Produce new XML document based on diff Description abstract public mixed XMLDiff\Base::merge ( mixed $src , mixed $diff ) Abstract merge method to be implemented by inheriting classes. Basically the method purp…[ More ]
Introduction To SimpleXML With PHP
Introduction To SimpleXML With PHP Contents AbstractGetting StartedLoad an XML FileAccessing DataImport DOMCreate a SimpleXMLElementAdding AttributesAccessing ElementsAccessing AttributesXPath QueriesXPath Search by TagnameSaving The XML Abstract XML creation and manipulation can be quite c…[ More ]
PHP Recursive Array To XML With DOM
PHP Recursive Array To XML With DOMThis class provides a method to recursively create XML from a PHP array. The functionality is provided by extending the built in Document Object Model (DOM) class. By extending the DOM class, all the functions within are available locally to the array2xml class. Th…[ More ]
validate a textbox in vb.net
Validate A Textbox In Vb.NetYou can check the text string, i.e., textbox1.text, to make sure it has nothing besides alphabet characters in the .Leave event. This will catch an error when the user tabs to the next control, for example. You can do this using a regular expression (import System.Text.Re…[ More ]
Convert PDF to SWF
convert pdf to swf. Installer available for Windows and Linux. http://www.swftools.org/download.html Here is some sample example of how to use swftools - http://www.quiss.org/swftools/pdf2swf_usage.html After conversion of pdf to swf you can use flash player to view in a webpage (http:…[ More ]
Make your own Java Download Manager
Make your own Java Download Manager Source Code
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
imp…[ More ]
Difference between an IDE and Compiler
Difference between an IDE and CompilerToday I'm going to clear up your confusions of "What is an IDE?" and "What is a compiler?". If you ask a person "What compiler do you use?", the general answers would be: Code::Blocks Dev-C++ But are they compilers? Nooooo. Just because they come with a…[ More ]
SORTING ALGORITHM
Borland C++ Sorting Algorithm INTRODUCTIONHave you ever wondered about the software programs that sort large numbers of items? We take them for granted to do our everyday tasks on the computer, but what exactly makes them function? Many software packages have implemented their own algorithms for tak…[ More ]
Download attachments using Java Mail
 Download attachments using Java Mail    List attachments =newArrayList();for(Message message : temp){Multipart multipart =(Multipart) message.getContent();// System.out.println(multipart.getCount());for(int i =0; i < multipart.getCount(); i++){BodyPart bodyPart = multipart.getBodyPart(i);if(!Part.A…[ More ]
Displaying MySQL Column Names and Values via PHP
Displaying MySQL Column Names and Values via PHPSometimes in a PHP page it may be useful to not only retrieve data values from a MySQL database table, but also to retrieve column names from the table. Listed below is an example of how to do this for MySQL databases using PHP. This example uses…[ More ]
date formatting in vb.net
 date formatting in vb.netloading data into datagridview from xml file. And I have a one problem: date formatting.Datagridview shows a date like this: 2011-01-01T00:00:00+02:00How to force him to show the date in short date format (only 01.01.2011) without a timeI've tried this code:  ds = New DataS…[ More ]
Convert XML to an array in PHP
Convert XML to an array in PHPCode[ More ]
Data mining apriori algorithm php implementation
Data mining apriori algorithm php implementationIn data mining, association rule mining is more important to deal with. Apriori algorithm is an algorithm in mining association rules most basic. I rewrite this period exam with apriori algorithm c php, php lovers doing the mining analysis prog…[ More ]
Convert values between decimal, hexadecimal, octal, and binary
TitleConvert values between decimal, hexadecimal, octal, and binaryKeywordsconvert, decimal, hexadecimal, octal, binary, baseCategoriesAlgorithmsDecimal, hexadecimal, and octal representations are straightforward. To read a string in these formats, use CLng. Hexadecimal strings should begin with &H …[ More ]
Apriori algorithm explanation
Apriori algorithm explanation region----- Apriori-gen //Generates Candidate Itemsets static ArrayList AprioriGen (ArrayList L) { ArrayList Lk = new ArrayList (); //List to store generated Candidate Itemsets Regex r = new Regex (","); for (int i = 0 ; i [ More ]