Hiya I just wanted to know if there are any php profile page templates, like that of myspace.com, where the user can upload an image of themselves and upload tracks to that page and also add profiles
I would be much greatfull thanks
Hiya I just wanted to know if there are any php profile page templates, like that of myspace.com, where the user can upload an image of themselves and upload tracks to that page and also add profiles
I would be much greatfull thanks
Hiya I just wanted to know if there are any php profile page templates, like that of myspace.com, where the user can upload an image of themselves and upload tracks to that page and also add profiles
I would be much greatfull thanks
hi there i am developing a website, where users can register to become members however, i have to write operations how the system will add a user, I have been told to do it in psuedo code, but i dnt know psuedo code. is there any other way this can be done,
the ad user fields are Forname, Surname, Email, Password
I would appreciate if someone could show me how to do this so i can do the rest
Hiya i am designing an online music video library apllication where users can access their music via a mobile phone. I already know i can use WML or j2me for this however because its a project i need to knw what environments they use etc
Hiya all. I have a bit of a problem Im developing an online music library
I want to know if its possible to have a function for my application that when a user/member is logged in and they choose to add a track to their personal music library how can I keep this information so that when they log in after login out that page will have that data for instance
Track Name Description blabla blabla
Falling blabla blabla blabla
Add to library
and you press add to library then it adds to whatever track the member has in their personal library sort of like the add to cart in an e-commerce site
I would be greatfull if Anybody could show me the way.
Thanks
Can someone tell me how to get the size of the track that i am putting into the database recorded in the database
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Add a Print</title>
</head>
<body>
<?php # Script 14.2 - add_print.php
// This page allows the administrator to add a print (product).
require_once ('../mysql_connect.php'); // Connect to the database.
if (isset($_POST['submitted'])) { // Check if the form has been submitted.
// Validate the print_name, image, artist (existing or first_name, last_name, middle_name), size, price, and description.
// Check for a track name.
if (!empty($_POST['track_name'])) {
$tn = escape_data($_POST['track_name']);
} else {
$tn = FALSE;
echo '<p class="red"><font color="red">Please enter the track\'s name!</font></p>';
}
// Check for an image.
if (is_uploaded_file ($_FILES['image']['tmp_name'])) {
if (move_uploaded_file($_FILES['image']['tmp_name'], "../uploads/{$_FILES['image']['name']}")) { // Move the file over.
echo '<p>The file has been uploaded!</p>';
} else { // Couldn't move the file over.
echo '<p><font color="red">The file could not be moved.</font></p>';
$i = FALSE;
}
$i = $_FILES['image']['name'];
} else {
$i = FALSE;
}
// Check for a size (not required).
if (!empty($_POST['track_label'])) {
$s = escape_data($_POST['track_label']);
} else {
$s = '<i>Size information not available.</i>';
}
// Check for a price.
//if (is_numeric($_POST['price'])) {
// $p = (float) $_POST['price'];
//} else {
//$p = FALSE;
//echo '<p><font color="red">Please enter the print\'s price!</font></p>';
//}
// Check for a description (not required).
if (!empty($_POST['track_credits'])) {
$d = escape_data($_POST['track_credits']);
} else {
$d = …
hiya does anybody know how i can have a page that members of an online music library application that i am building can download the tracks on the page by clicking a dwnload option.
If anybody knows any good sites can you please let me know thatnks
Im having problems with this script. Right now it adds everthing to the database if I take this out
<p><b>Genre:</b>
<p><input type="radio" name="genre" value="existing" /> Existing =>
<select name="existing"> <option>Select One</option>
<?php // Retrieve all the artists and add to the pull-down menu.
$query = "SELECT genre_id, (genre_name) AS name FROM track_genre ORDER BY genre_name ASC";
$result = mysql_query($query);
while ($row = mysql_fetch_array ($result, MYSQL_ASSOC)) {
echo "<option value=\"{$row['genre_id']}\">{$row['name']}</option>\n";
}
mysql_close(); // Close the database connection.
?>
</select>
</p>
however i have a track_genre table in my database which is populated with genres. I want to query it to retrieve those values and add the value into the track table in my database track_ genre field I also have a track genre field in my track table. can someone point me in the right direction
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Add a Print</title>
</head>
<body>
<?php # Script 14.2 - add_print.php
// This page allows the administrator to add a print (product).
require_once ('../mysql_connect.php'); // Connect to the database.
if (isset($_POST['submitted'])) { // Check if the form has been submitted.
// Validate the print_name, image, artist (existing or first_name, last_name, middle_name), size, price, and description.
// Check for a track name.
if (!empty($_POST['track_name'])) {
$tn = escape_data($_POST['track_name']);
} else {
$tn = FALSE;
echo '<p class="red"><font color="red">Please enter the track\'s name!</font></p>';
}
// Check for an image.
if (is_uploaded_file ($_FILES['image']['tmp_name'])) {
if (move_uploaded_file($_FILES['image']['tmp_name'], …
hiya in my database i have a users table
Create Table Users(
user_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
email varchar (40) NOT NULL,
pass CHAR (40) NOT NULL,
first_name varchar (15) NOT NULL,
last_name varchar (30) NOT NULL,
active CHAR (32),
registration_date datertime NOT NULL,
PRIMARY KEY(member_id),
UNIQUE KEY (email),
KEY (email, pass)
)
I want the administrator to be able to login from the same location as the user however when logged in different admin links would appear for the admin pages How would i do this if someone could pleaase let me know i would be greatful
thanks Brims
in my online music video library so far I have an artist section where artists can login
An artist should be allowed to upload their tracks on the site for the general public to hear.
a user can download a track and listen to tracks provided they are logged on.
so far i only have login pages for them to logon to and i am trying to develop pages to carry out that functionality.
can someone point me in the right direction ill pay if i have 2 i need it done before tomorro otherwise im a dead man
cheers
in my online music video library so far I have an artist section where artists can login
An artist should be allowed to upload their tracks on the site for the general public to hear.
a user can download a track and listen to tracks provided they are logged on.
so far i only have login pages for them to logon to and i am trying to develop pages to carry out that functionality.
can someone point me in the right direction ill pay if i have 2 i need it done before tomorro otherwise im a dead man
cheers
hiya in my database i have a users table
Create Table Users(
user_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
email varchar (40) NOT NULL,
pass CHAR (40) NOT NULL,
first_name varchar (15) NOT NULL,
last_name varchar (30) NOT NULL,
active CHAR (32),
registration_date datertime NOT NULL,
PRIMARY KEY(member_id),
UNIQUE KEY (email),
KEY (email, pass)
)
I want the administrator to be able to login from the same location as the user however when logged in different admin links would appear for the admin pages How would i do this if someone could pleaase let me know i would be greatful
thanks Brims
Hiya im having trouble adding the details into the database with this script
if someone could point me out in the right direction
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>Add a Print</title>
</head>
<body>
<?php # Script 14.2 - add_print.php
// This page allows the administrator to add a print (product).
require_once ('../mysql_connect.php'); // Connect to the database.
if (isset($_POST['submitted'])) { // Check if the form has been submitted.
// Validate the print_name, image, artist (existing or first_name, last_name, middle_name), size, price, and description.
// Check for a track name.
if (!empty($_POST['track_name'])) {
$tn = escape_data($_POST['track_name']);
} else {
$tn = FALSE;
echo '<p class="red"><font color="red">Please enter the track\'s name!</font></p>';
}
// Check for an image.
if (is_uploaded_file ($_FILES['image']['tmp_name'])) {
if (move_uploaded_file($_FILES['image']['tmp_name'], "../uploads/{$_FILES['image']['name']}")) { // Move the file over.
echo '<p>The file has been uploaded!</p>';
} else { // Couldn't move the file over.
echo '<p><font color="red">The file could not be moved.</font></p>';
$i = FALSE;
}
$i = $_FILES['image']['name'];
} else {
$i = FALSE;
}
// Check for a size (not required).
if (!empty($_POST['track_label'])) {
$s = escape_data($_POST['track_label']);
} else {
$s = '<i>Size information not available.</i>';
}
// Check for a price.
//if (is_numeric($_POST['price'])) {
// $p = (float) $_POST['price'];
//} else {
//$p = FALSE;
//echo '<p><font color="red">Please enter the print\'s price!</font></p>';
//}
// Check for a description (not required).
if (!empty($_POST['track_credits'])) {
$d = escape_data($_POST['track_credits']);
} else {
$d …
For my online music application I know I have to Store the data in a mysql database so that you can do searches, and using php
you can display dynamic pages. Then just organize the data you pull from the database into html tables. to have a browse tracks page where the artist images go into and tracks etc each time a new artist is crerated I just wanted to know how to start it
Hi i just wanted to know as im designing an online music video library how to have a page like the following
where when the tracks and images are uploaded by the user it goes directly in the images and tracks section respectively
can Anyone let me know how I can get a page to handle my music content i.e track, image of track description and so on so it can be viewed. Right now i have a page where you can view tracks but it doesnt handle the content very well
Im doing an online music library
Basically ive got a page were u can browse tracks tracks that have a name image artist for that track and so on but all it is is a page with the text
for example
Artist Track Description Download
50 cent Little bit bla bla bla bla ddfdf
but right now its just text as you see. I wanted to know how to have a page were these can be stored in a neater way like boxes so that images can be place nicely and the page layout will be nice
for example check www.jamroom.net then go to online demo and check the song chart. I want my browse page to look similar to this so everytime an image is uploaded it goes into this page with a similar layout of the functionality
I wanted to know as ive got my scripts uploading mp3 tracks on a file server I want a page with a template where the track images can be stored with track name, and track number of streams and dwnloads at the moment its just a page with the text artist name, track name description and so on I want the page to have a table where this info goes into so the artist image and tracks desccription and stuff are laid out neatly
thanks
Brims
Hiya all
Im developing an online music/ video application withe a registering section for Artists and one for members. right now i have 2 separate registering pages, could anyone tell me how I can get artists and members to login through the same login page step b step
thanks Brims
Hiya my application is an online music video library where users can download music to their web browsers, mobile phones and pdas.
right now my application downloads the track and plays the music track from the browser, I just want it to do the same on mobile phnes and pdas
ive devloped my application with php mysql and html
If any one could advise me on how to go on about this i would realy appreciate it thanks
Brims
Hiya my application is an online music video library where users can download music to their web browsers, mobile phones and pdas.
right now my application downloads the track and plays the music track from the browser, I just want it to do the same on mobile phnes and pdas
ive devloped my application with php mysql and html
If any one could advise me on how to go on about this i would realy appreciate it thanks
Brims
Hiya Im designing an online music video library. Ive already done my registration and login scripts to register a new user. I have decided that to store the mp3s im gonna have a file system instead of storing them directly in the database.
Can someone please direct me on How i would do so, as I am not sure where to start thanks
Hiya Im designing an online music video library. Ive already done my registration and login scripts to register a new user. I have decided that to store the mp3s im gonna have a file system instead of storing them directly in the database.
Can someone please direct me on How i would do so, as I am not sure where to start thanks
Hiya ive finally completed the login and registration forms for my online music video library site. I just want to know what would be the best way to store the mp3 files in the database and how i would go on about it so the user can view the tracks and listen to them.
Hiya ive finally completed the login and registration forms for my online music video library site. I just want to know what would be the best way to store the mp3 files in the database and how i would go on about it so the user logged in can view the tracks and listen to them.
Can anyone point me out into using registering scripts and login scripts
The database is my sql i have connected to the database
itsuite.it.bton.ac.uk/student/iak/m
with the join form
i want to have a database with music link it to an API or something so that the database will have music on it so it can be streamed to a browser or mobile phone and pda devices
I am building an online music video library where u can strean the media to ur browser mobile phne and pda devices. I am using PHP for the middle HTML for the front end and MYsql for the backend.
I want to have database with the music files residing on them but I dnt know where to start if I could be given some advise I would be greatfull.
I have started and this is what i have so far. I have untill MAY 4th to do it but i am open to any criticism and any ideas that will help me
http://itsuite.it.bton.ac.uk/student/iak/m/
http://itsuite.it.bton.ac.uk/student/iak/m/login.php
The functionality is a member logs in or a user can browse the song list
members have to be rcognised by the database which i havnt done yet
and non members can join which i have done and linked to the database but does not remember as a member,
a member has a personal library also where the songs that they browse can be added to their personal library
Im building an online music video library with php can anyone point me out getting it wrking with the database
Im doing an online music video library with php for the middle, mysql for the backend and html for the front. I was wondering if i could get some help with member forms so members can log in and joining forms so non members can join. And i am open to any suggestions thanks
Thanks Phaelax for your reply to my post
Basically i am going to use 3 tier architecture. User interface processing engine, and a backend database.
the user interface will be a web portal, processing engine will be j2ee, and the backend will be oracle DB2 or my sql.
The pc mobile phones and pda will all have to be able to play and read mp3 files it is aimed at people who have access to the web through these devices it is not my proect to install a java application on each device. (is this a good decision choice)
also I want to know how to devise my plan for it and what i would include, Ive got to give in my plan this week coming.
thanks Brims
Hiya all ive decided to do my final year project designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda and mobile phones.
i want to concentrate on the storage being able to handle multiple rreads of single mp3 files without affecting its performance
how can I get this project started and what resources can i use if anyone can point me in the right direction i would be gr8full
Hiya all ive decided to do my final year project designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda and mobile phones.
i want to concentrate on the storage being able to handle multiple rreads of single mp3 files without affecting its performance
how can I get this project started and what resources can i use if anyone can point me in the right direction i would be gr8full
Hiya all ive decided to do my final year project designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda and mobile phones.
i want to concentrate on the storage system being able to handle multiple rreads of single mp3 files without affecting its performance
how can I get this project started and what resources can i use if anyone can point me in the right direction i would be gr8full
Hiya all ive decided to do my final year project designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda and mobile phones.
how would i integrate pda's and mobile phone technologies into this proj
i want to concentrate on the storage system being able to handle multiple rreads of single mp3 files without affecting its performance so ill be paying attention to the backend
how can I get this project started and what resources can i use if anyone can point me in the right direction i would be gr8full
Hiya all ive decided to do my final year project designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda and mobile phones.
i want to concentrate on the storage being able to handle multiple rreads of single mp3 files without affecting its performance
how can I get this project started and what resources can i use if anyone can point me in the right direction i would be gr8full
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please. I was thinking of doing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda, and mobile phones. concentrating on the storage system handling multiple reads of single mp3 files but how do i get it started and is the project worth doing if anyone can point me in the right direction I would be very gr8full
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please. I was thinking of doing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda, and mobile phones. concentrating on the storage system handling multiple reads of single mp3 files but how do i get it started and is the project worth doing if anyone can point me in the right direction I would be very gr8full
Thanks for your reply I was thinking of designing an online music video library that will allow multiple access by many users to the same files that will be highly available, with facilities to access the video library by pc, pda, and mobile phones
I know ill have to employ a 3 tier architecture process but is the project worth doing?
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please :cry:
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please :cry:
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please :cry:
Hiya this is Brims i need an idea for a final year project computer science, nothing too hard time is running out. I want to use either php or asp with database cant seem to think of any applications can someone help please :cry: