|
|
|
18
I've seen XML 2 Array functions done in other ways but this is the shortest implementation I've seen yet. I didnt write it myself though, but I thought I'd submit it for common good of this site. It uses regex and works prefectly.
-14
Transform XML File with XSL Stylesheet
6
strandedfisherman
This gets the information off youtube when you add a youtube link.
please change the dev_id to your own my is:BnvzCjJ_Bzw
http://www.youtube.com/my_profile_dev
put a link in eg. http://www.youtube.com/watch?v=xOJnKgsWPGw
please change the dev_id to your own my is:BnvzCjJ_Bzw
http://www.youtube.com/my_profile_dev
put a link in eg. http://www.youtube.com/watch?v=xOJnKgsWPGw
7
Implementation-independent XML builder.
8
7
I use something similar to this in an application named Shock 3. It provides you with your own Custom settings that can handle your own Custom types as well.
1
This is a simple class for generating XML from MySql databse table.
Usage
include("Xml.class.php");//include class file
$mx=new Xml;//create new Xml object
$mx->dbtoXml("localhost","root","","dbname","tblname");//give hostname, user, password, database name and table name
echo $mx->showXml();//showXml returns Xml
Usage
include("Xml.class.php");//include class file
$mx=new Xml;//create new Xml object
$mx->dbtoXml("localhost","root","","dbname","tblname");//give hostname, user, password, database name and table name
echo $mx->showXml();//showXml returns Xml
1
Method to read xml node in C#
1
Xml has become a very ubiquitous and is an integral part of .Net and the System.Data namespace. The problem lies in that not many people know how to take advantage of some of the features. When we are using a database, we naturally use the Systen.Data namespace, but with Xml documents as data there are hundreds of solutions for displaying Xml data out there for .Net.
I myself prefer to use the DataSet object and the DataGrid control just as I would if the data was coming from SQL Server. The common misconception, even to those who know that you can do this, is that you need a schema to accomplish it. There is a very simple way to bind raw Xml data to a datagrid without a schema. The Xml data must be simple though, mapping to rows easily.
I myself prefer to use the DataSet object and the DataGrid control just as I would if the data was coming from SQL Server. The common misconception, even to those who know that you can do this, is that you need a schema to accomplish it. There is a very simple way to bind raw Xml data to a datagrid without a schema. The Xml data must be simple though, mapping to rows easily.
17
This function converts a CSV file to a simple XML file.







