replace buttons with hyperlinks

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
handshakeit
Forum Newbie
Posts: 1
Joined: Wed Oct 05, 2005 7:08 am
Location: INDIA

replace buttons with hyperlinks

Post by handshakeit »

I have a script that uploads file push buttons, but i want to replace buttons with hyperlinks.

Please send suggessions

Thanks

http://www.handshakeit.com
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

Suggestion: post your code.


Side note: In the future, please avoid double posting and/or cross posting. We really really don't like it.
LetoAtreides
Forum Newbie
Posts: 2
Joined: Wed Oct 05, 2005 4:41 am

Post by LetoAtreides »

I have the same problem, someone know the solution?
Letoduke
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Post by onion2k »

Do you ever get the impression that at a college somewhere a homework assignment has been handed out and we're being asked to provide the answers..
pilau
Forum Regular
Posts: 594
Joined: Sat Jul 09, 2005 10:22 am
Location: Israel

Post by pilau »

onion2k wrote:Do you ever get the impression that at a college somewhere a homework assignment has been handed out and we're being asked to provide the answers..
No, but now that you point it out ;)
User avatar
$var
Forum Contributor
Posts: 317
Joined: Thu Aug 18, 2005 8:30 pm
Location: Toronto

Post by $var »

well, here you go kiddies...


to replace buttons with links

Code: Select all

<input name="" onClick"" class="text">
would be

Code: Select all

<a href=""# name="" onClick"" class="text">Link</a>
This isn't PHP though.
Perhaps that could be addressed in a different forum.
Post Reply