Make a smiple MP3 Player for Drupal
Submitted by admin on Sat, 06/26/2010 - 22:29will try to make this as simple as possible. First What DO you need to setup the MP3 Player.
- audio-player.js
- player.swf
Use this link to download the two file. Please read the available information and Instructionhttp://wpaudioplayer.com/standalone
Please use the example available to get you started.
You need to download the following two files.
XML
Submitted by admin on Fri, 05/07/2010 - 01:50HTML, which stands for Hyper Text Mark-up Language, is mark-up language for creating web pages. It has many semantics rule which allows it to display information on browser. All HTML document start with HTML tag and end with HTML tag. Within those tags other tags are included. Here are some of the basic build blocks of HTML document. , Title BODY all tag with exception to /br must, START END . HTML also support image and object to be embedded to a website allowing to be more dynamic and creative. Interactive forms can be created using HTML document.
easy JAVA class to connect to mysql database
Submitted by admin on Sat, 03/27/2010 - 15:28import java.sql.*;
public class mysql
{
public static void main (String[] args)
{
Connection conn = null;
try
{
String userName = "root"; // change to your own username
String password = ""; // change with your own password
String url = "jdbc:mysql://localhost"; // change to your own database server host
Class.forName ("com.mysql.jdbc.Driver").newInstance ();
conn = DriverManager.getConnection (url, userName,password);
