Re: [PHP] HTML button as hyperlink

2004-11-18 Thread John Nichel
Mulley, Nikhil wrote:
Hi All,
 
My Question is that , I have an HTML page , how can  I make it as Hyperlink instead of a Form Button
 
When user clicks on that button , it must be a href link .
 
Please guide me.
Thanks,
Nikhil.

Oh, I don't know.  Maybe you can research HTML, forms, and possibly some 
JavaScript.

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] HTML button as hyperlink

2004-11-18 Thread Richard Davey
Hello Nikhil,

Thursday, November 18, 2004, 2:04:51 PM, you wrote:

MN My Question is that , I have an HTML page , how can I make it as
MN Hyperlink instead of a Form Button

Failing to see the PHP relevance here. Perhaps you want a Beginners
Guide to HTML?

Best regards,

Richard Davey
-- 
 http://www.launchcode.co.uk - PHP Development Services
 I am not young enough to know everything. - Oscar Wilde

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] HTML button as hyperlink

2004-11-18 Thread Mulley, Nikhil
Hoped that this is the best list , I had my problems got solved under PHP 
always here , so mailed request to it.

-Original Message-
From: Richard Davey [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 7:48 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] HTML button as hyperlink


Hello Nikhil,

Thursday, November 18, 2004, 2:04:51 PM, you wrote:

MN My Question is that , I have an HTML page , how can I make it as
MN Hyperlink instead of a Form Button

Failing to see the PHP relevance here. Perhaps you want a Beginners
Guide to HTML?

Best regards,

Richard Davey
-- 
 http://www.launchcode.co.uk - PHP Development Services
 I am not young enough to know everything. - Oscar Wilde

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] HTML button as hyperlink

2004-11-18 Thread Martin Holm
Mulley, Nikhil wrote:
Hi All,
My Question is that , I have an HTML page , how can  I make it as
Hyperlink instead of a Form Button
When user clicks on that button , it must be a href link .
Please guide me.
Thanks,
Nikhil.
.
 

first of all, i dont see anything regarding php in this question.
form method=post action=http://new.url.com/whatever.html;
input type=submit value=Go to other page
/form
// Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] HTML button as hyperlink

2004-11-18 Thread Angelo Zanetti
Hi, 

it can be set as type button then in the onClick method use javascript
to call the target page.

Hope this helps
Angelo

 Mulley, Nikhil [EMAIL PROTECTED] 11/18/2004 4:04:51 PM 
Hi All,
 
My Question is that , I have an HTML page , how can  I make it as
Hyperlink instead of a Form Button
 
When user clicks on that button , it must be a href link .
 
Please guide me.
Thanks,
Nikhil.

Disclaimer 
This e-mail transmission contains confidential information,
which is the property of the sender.
The information in this e-mail or attachments thereto is 
intended for the attention and use only of the addressee. 
Should you have received this e-mail in error, please delete 
and destroy it and any attachments thereto immediately. 
Under no circumstances will the Cape Technikon or the sender 
of this e-mail be liable to any party for any direct, indirect, 
special or other consequential damages for any use of this e-mail.
For the detailed e-mail disclaimer please refer to 
http://www.ctech.ac.za/polic or call +27 (0)21 460 3911

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] HTML button as hyperlink

2004-11-18 Thread Mulley, Nikhil
Thanks Martin , it gelled :)

-Original Message-
From: Martin Holm [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 18, 2004 8:07 PM
To: Mulley, Nikhil
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] HTML button as hyperlink


Mulley, Nikhil wrote:

Hi All,

My Question is that , I have an HTML page , how can  I make it as
Hyperlink instead of a Form Button

When user clicks on that button , it must be a href link .

Please guide me.
Thanks,
Nikhil.

.
  

first of all, i dont see anything regarding php in this question.

form method=post action=http://new.url.com/whatever.html;
input type=submit value=Go to other page
/form

// Martin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] HTML button as hyperlink

2004-11-18 Thread Jay Blanchard
[snip]
Hoped that this is the best list , I had my problems got solved under
PHP always here , so mailed request to it.
[/snip]


You're correct, this is the best list...but off-topic is still
off-topic. The answer that ou seek is BASIC HTML ...

a href=foo.phpimg scr=foo.jpg alt=Foo - Get Some! border=0
width=69 height=69/a

width and height are optional. To make this PHP

echo a href=\foo.php\img scr=\foo.jpg\ alt=\Foo - Get Some!\
border=\0\ width=\69\ height=\69\/a;

Now, don't do it again

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] HTML button as hyperlink

2004-11-18 Thread Angelo Zanetti
well thats the whole point of a submit button: thats it submits the form
to a specific file. I would suggest doing an HTML tutorial, it wont take
long and it will really help.

Angelo

 Mulley, Nikhil [EMAIL PROTECTED] 11/18/2004 4:39:35 PM 
Thanks Martin , it gelled :)

-Original Message-
From: Martin Holm [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 18, 2004 8:07 PM
To: Mulley, Nikhil
Cc: [EMAIL PROTECTED] 
Subject: Re: [PHP] HTML button as hyperlink


Mulley, Nikhil wrote:

Hi All,

My Question is that , I have an HTML page , how can  I make it as
Hyperlink instead of a Form Button

When user clicks on that button , it must be a href link .

Please guide me.
Thanks,
Nikhil.

.
  

first of all, i dont see anything regarding php in this question.

form method=post action=http://new.url.com/whatever.html;
input type=submit value=Go to other page
/form

// Martin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php 


Disclaimer 
This e-mail transmission contains confidential information,
which is the property of the sender.
The information in this e-mail or attachments thereto is 
intended for the attention and use only of the addressee. 
Should you have received this e-mail in error, please delete 
and destroy it and any attachments thereto immediately. 
Under no circumstances will the Cape Technikon or the sender 
of this e-mail be liable to any party for any direct, indirect, 
special or other consequential damages for any use of this e-mail.
For the detailed e-mail disclaimer please refer to 
http://www.ctech.ac.za/polic or call +27 (0)21 460 3911

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] HTML button as hyperlink

2004-11-18 Thread Marek Kilimajer
Mulley, Nikhil wrote:
Hi All,
 
My Question is that , I have an HTML page , how can  I make it as Hyperlink instead of a Form Button
 
When user clicks on that button , it must be a href link .
 
Please guide me.
My preference is CSS. Style your link to look like a button.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] HTML button as hyperlink

2004-11-18 Thread Marek Kilimajer
Chris Boget wrote:
My preference is CSS. Style your link to look like a button.

What would the CSS look like to do this, I'm curious...
For default Mozilla button:
A.button {
  padding: 0px 6px 0px 6px;
  border-width: 2px;
  border-style: outset;
  border-color: ButtonFace;
  background-color: ButtonFace;
  color: ButtonText;
  cursor: default;
  white-space: pre;
}
A.button:active {
  border-style: inset;
}
a href=http://www.php.net; class=buttonPHP/a
I used system colors: http://www.w3.org/TR/CSS2/ui.html#system-colors
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php