WAP Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreWAP Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old February 21st, 2003, 05:01 AM
belfastrab belfastrab is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Posts: 1 belfastrab User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Polyphonic tones in a WML site

Hi All

First of all I am new to the whole WAP design thing, but I have been building web sites since 1996 so I fairly clued up, I think!

Anyways, I bought myself a new Sharp GX10 phone, with GPRS, and I was impressed with some of the ringtone sites, that are on the net, which allows the user to download polyphonic ringtones direct to their phone, needless to say with most things on the web these days, you have to pay for them.

So I went on the net, on my PC, and found the ringtone files, so I was wanting to know how I can build a WML site, with these ringtone files built in or linked so I and other people can download them to their phones.

All help would be greatly apperaited.

Cheers

BelfastRab

Reply With Quote
  #2  
Old June 16th, 2003, 03:23 PM
twatus twatus is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 1 twatus User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Robert, Aaron here

please get in touch .. URL
Cheers,
Aaron.

<edit from andymoo>
i've taken the email address out of this as devshed is one of the busiest sites on the net and it's plain daft to put an email on here as the internet is full of spanners and fools.
</edit>

Last edited by andymoo : November 26th, 2004 at 08:41 AM.

Reply With Quote
  #3  
Old August 3rd, 2003, 05:39 PM
andrewmay67 andrewmay67 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Location: Toronto, Ontario
Posts: 1 andrewmay67 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I'd actually like to know how to do that as well.... I have midi files and Id like to send them to my phone.

--andrew

Reply With Quote
  #4  
Old August 30th, 2003, 09:13 PM
Goob Goob is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 6 Goob User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Try wapbuddy ,this is a great php script for doing just what your asking. you can get it here http://www.hotscripts.com/Detailed/20588.html

Reply With Quote
  #5  
Old September 6th, 2003, 05:18 PM
PhReAk4 PhReAk4 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2003
Posts: 2 PhReAk4 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Easy, just make a link to the mid file (or whatever type of ringtone sharp uses).

Eg:
<wml.... bla bla bla
...
...
...
<a href="myringtone.mid">myringtone</a><br/>
<a href="myringtone.mid">myringtone</a><br/>
<a href="myringtone.mid">myringtone</a><br/>
<a href="myringtone.mid">myringtone</a><br/>


and so on...

PhReAk4

Reply With Quote
  #6  
Old September 19th, 2003, 08:22 PM
Sevenger Sevenger is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 4 Sevenger User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Or you try the php file i wrote.
It creates the links for all files in a dir (in my case "sounds/songs/") and shows how many bytes they have:
PHP Code:
<?php
// header erstellen
header("Content-Type: text/vnd.wap.wml"); 
echo 
"<?xml version=\"1.0\"?>"
echo 
"<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\" 
\"http://www.wapforum.org/DTD/wml_1.1.xml\">"


echo 
"<wml>"
echo 
"<card id=\"gamez\" title=\"sevenger sounds\">"

//Daten auslesen
$path "./sounds/songs";
$dp opendir($path);
while (
$file readdir($dp))
{
if (!
preg_match('/^\.{1,2}/'$file))
{
// Dateigrösse bestimmen
$presize filesize("sounds/songs/$file");
$size $presize/1000;
// Werte ausgeben
echo "<p><a href=\"$path/$file\">$file ($size kb)</a></p>";
}
}
//echo "<p><a href="main.wml">back </a></p>";

echo "</card>";
echo 
"</wml>"
?>


so long
Sevenger

Reply With Quote
  #7  
Old November 26th, 2004, 08:33 AM
bilalinamdar bilalinamdar is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 2 bilalinamdar User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Requires a Premade script for upload

Thanks for your above script but still it lacks many things such as a games, Java, wallpaper Folders arrangement. Please i would be very thankfull if u build a php for me which can do all the stuff that the Wapbuddy does. There is a bug in wapbuddy which i can't fix. The problem is when i click the next button it refresh's and load the content again. Please help me i have a good collection of ringtones, games, application, wallpaper,etc
Please help me by providing a simple script that auto update info from the folder shows size etc. Please. Need it very badly.

Reply With Quote
  #8  
Old November 26th, 2004, 08:43 AM
andymoo's Avatar
andymoo andymoo is offline
Timelord
Dev Shed Novice (500 - 999 posts)
 
Join Date: Oct 2003
Location: Loughborough, Leicestershire
Posts: 605 andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level)andymoo User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 4 Days 5 h 53 m 46 sec
Reputation Power: 63
Quote:
Originally Posted by bilalinamdar
Thanks for your above script but still it lacks many things such as a games, Java, wallpaper Folders arrangement. Please i would be very thankfull if u build a php for me which can do all the stuff that the Wapbuddy does. There is a bug in wapbuddy which i can't fix. The problem is when i click the next button it refresh's and load the content again. Please help me i have a good collection of ringtones, games, application, wallpaper,etc
Please help me by providing a simple script that auto update info from the folder shows size etc. Please. Need it very badly.

Wooooooh lazy springs to mind, asking someone to build your code.....

PS - if i see any sites with ringtones who are not licensed i will report to the relevant authorites as we now pay the artists, it's only fair.
__________________
Andy Moore << oh no it's got a blog.....
Word Press WAP Plugin with Ad Mob Advertising revenue
PHP developer
deploying ringtones, mp3 downloads and realtones
I'm a geek who's obsessed with stats and gadgets

Reply With Quote
  #9  
Old November 27th, 2004, 11:47 AM
bilalinamdar bilalinamdar is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 2 bilalinamdar User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks for your not so humble reply

See i don't have time to learn The wap or php programming what i do is i just want to make my own website and ha don't u think that every body can not do what you do. Actually because of lack of time I don't want to build that's it. It is just one page code for which i have to learn the entire php programming don't you think that is insane for me. I don't have that much of time so please help me out. . And ha please don't say that i m using some illegal thing i think u don't know abt me what site i have what i provide etc etc. So Please don't comment.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreWAP Programming > Polyphonic tones in a WML site


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway