Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Design

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
  #1 (permalink)  
Old 25-04-2005, 01:45 PM
Novice Webmaster
 
Join Date: Apr 2005
Location: malaysia
Posts: 13
Rep Power: 0
coolbuzz is on a distinguished road
submit script help

Hi,

I am looking for help in submit script code.

First, can you go to
http://biz.yahoo.com/rss.html
you will see "Enter Stock Symbol(s)" box.
For example you key in YHOO you will then see http://finance.yahoo.com/rss/headline?s=yhoo

repeat it for GOOG you will see http://finance.yahoo.com/rss/headline?s=goog

Do you notice that the http://finance.yahoo.com/rss/headline?s= is a default value.

Now, anyone knows how to create a html submit script to submit to http://finance.yahoo.com/rss/headline?s=altr when i key in ALTR in the submit box?


Thanks a lot...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 25-04-2005, 02:16 PM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 115
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
do you want to have a form and a input field($input). whatever you submit, will goes to http://finance.yahoo.com/rss/headline?s=$input ?

In the receiving script, grab the $input, attach to the end of the URL and redirect to the url.

Or, easier, copy the yahoo! site source code.
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 25-04-2005, 02:51 PM
Novice Webmaster
 
Join Date: Apr 2005
Location: malaysia
Posts: 13
Rep Power: 0
coolbuzz is on a distinguished road
lcf,

Thanks for your reply...
yes, this is exactly what i want.

Thanks in advance!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 25-04-2005, 04:10 PM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 115
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
ok, you shall pay me 30 bucks for the following script.

This is the form.
HTML Code:
<form action="redirect.php">
<input name="altr" type="text" />
<input type="submit" value="Submit"/>
</form>
This is the receiving script - redirect.php
PHP Code:
<?php
if ($_REQUEST["altr"]) {
  
$input $_REQUEST["altr"];
  
$dest 'http://finance.yahoo.com/rss/headline?s=' $input;
  
header("Location:" $dest); /* Redirect browser */
}
?>
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 25-04-2005, 04:58 PM
Novice Webmaster
 
Join Date: Apr 2005
Location: malaysia
Posts: 13
Rep Power: 0
coolbuzz is on a distinguished road
it works.....Terima kasih....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 26-04-2005, 09:42 AM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 115
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
great. now, bank in RM30 into my account.
just kidding.
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
free link exchange, submit your url srdotcom Other Internet Marketing Methods 7 19-11-2006 03:27 PM
Should i submit my url to SE nobita Other Internet Marketing Methods 1 20-09-2005 12:08 AM
submit hosting list ( free ) directory Other Webmaster-related Services and Promotion 0 14-03-2005 04:36 PM
More than one submit event problem ngaisteve1 Website Programming 0 19-10-2004 12:37 PM
2form sekali submit GGG Website Programming 4 24-03-2003 10:45 AM



All times are GMT +8. The time now is 10:47 PM. Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58