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
handshakeit
Forum Newbie
Posts: 1 Joined: Wed Oct 05, 2005 7:08 am
Location: INDIA
Post
by handshakeit » Wed Oct 05, 2005 7:31 am
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
feyd
Neighborhood Spidermoddy
Posts: 31559 Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA
Post
by feyd » Wed Oct 05, 2005 7:45 am
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 » Thu Oct 06, 2005 2:16 am
I have the same problem, someone know the solution?
Letoduke
onion2k
Jedi Mod
Posts: 5263 Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com
Post
by onion2k » Thu Oct 06, 2005 3:53 am
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 » Thu Oct 06, 2005 4:07 am
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
$var
Forum Contributor
Posts: 317 Joined: Thu Aug 18, 2005 8:30 pm
Location: Toronto
Post
by $var » Thu Oct 06, 2005 9:16 am
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.