[PHP] Re: href links not working in XP

2005-12-12 Thread Dan Baker
Marlin Unruh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I apologize because I posted this question earlier under Re: [PHP] href difference between OS's, and am still struggling with the problem. I think I have fished all the way around the lake, with no results. I cannot get

[PHP] Re: href difference between OS's.

2005-12-12 Thread Dan Baker
Marco Kaiser [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] just link directly to the specific file like a href=C:\path\to\your\file.exeLink Local/a NOTE: XP SP2 will *not* open this file. The new security will not open files on local drives. You will need to map a network drive to

Re: [PHP] Re: href links not working in XP

2005-12-12 Thread Marlin Unruh
Dan Baker wrote: Marlin Unruh [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I apologize because I posted this question earlier under Re: [PHP] href difference between OS's, and am still struggling with the problem. I think I have fished all the way around the lake

[PHP] a href=website-dictionary.html#vanitysiteVanity Sites/a

2003-10-17 Thread Kevin Stone

[PHP] Using href as a submit for a form

2003-07-18 Thread Ron Allen
I am using a form to submit to mysql. What I would like to do is to use a link to submit the form instead of the standard submit button. Help is appreicated. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using href as a submit for a form

2003-07-18 Thread Larry_Li
: Ron Allen Subject: [PHP] Using href as a submit for a form [EMAIL PROTECTED

Re: [PHP] Using href as a submit for a form

2003-07-18 Thread Vince LaMonica
On Fri, 18 Jul 2003, Ron Allen wrote: } I am using a form to submit to mysql. What I would like to do is to use a } link to submit the form instead of the standard submit button. Help is } appreicated. You could use a simple GET to submit the form. Make sure you have register_globals off

[PHP] Bringing href up in a different page

2003-07-17 Thread Ron Allen
This is my current code. I am trying to have this come up in a different page. Help please! a href=ticket_admin.php?ID=.$row['ID']..$row['ID']./a -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Bringing href up in a different page

2003-07-17 Thread Adam Voigt
Umm, you mean new WINDOW? Add: target=_new To your href. On Thu, 2003-07-17 at 12:35, Ron Allen wrote: This is my current code. I am trying to have this come up in a different page. Help please! a href=ticket_admin.php?ID=.$row['ID']..$row['ID']./a -- Adam Voigt ([EMAIL PROTECTED])

[PHP] a href question

2003-01-14 Thread Ezequiel Sapoznik
Anyone can tell me what is wrong with the following sentence? printf('trtda href= . $row1[url] . Fotografía %snbsp/a/td/tr', $i); if $row1[url] is ../images/anything.jpg the plain HTML should be: trtda href=../images/anything.jpg Fotografía/a/td/tr Thanks! Ezequiel -- PHP General

RE: [PHP] a href question

2003-01-14 Thread Timothy Hitchens \(HiTCHO\)
PROTECTED]] Sent: Wednesday, 15 January 2003 11:10 AM To: [EMAIL PROTECTED] Subject: [PHP] a href question Anyone can tell me what is wrong with the following sentence? printf('trtda href= . $row1[url] . Fotografía %snbsp/a/td/tr', $i); if $row1[url] is ../images/anything.jpg the plain

[PHP] a href...

2002-09-13 Thread Meltem Demirkus
Hi, Iwant to send 2 variable by using a href like that: a href=bug_detail_user.php?id=$id?reporter_id=$reporter_id isnt this possible because it is taking the data id as $id?reporter_id=$reporter_id... can anyone tell me how I can manage this.. thanks.. meltem -- PHP General Mailing List

RE: [PHP] a href...

2002-09-13 Thread Jay Blanchard
[snip] Iwant to send 2 variable by using a href like that: a href=bug_detail_user.php?id=$id?reporter_id=$reporter_id [/snip] a href=bug_detail_user.php?id=$idreporter_id=$reporter_id change the second (and subsequent) question marks to ampersands, which in effect says id = $id AND reporter =

Re: [PHP] a href...

2002-09-13 Thread Aaron Gould
: Meltem Demirkus [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 13, 2002 8:57 AM Subject: [PHP] a href... Hi, Iwant to send 2 variable by using a href like that: a href=bug_detail_user.php?id=$id?reporter_id=$reporter_id isnt this possible because it is taking the data id

RE: [PHP] a href...

2002-09-13 Thread Will Steffen
PROTECTED]] Sent: 13 September 2002 02:57 PM To: [EMAIL PROTECTED] Subject: [PHP] a href... Hi, Iwant to send 2 variable by using a href like that: a href=bug_detail_user.php?id=$id?reporter_id=$reporter_id isnt this possible because it is taking the data id as $id?reporter_id

[PHP] preg_match_all href|src function

2002-06-02 Thread Michael Elms
Hi All, I have being working on PHP perl compaitable regular expressions for the last month and cannot work out how to program a preg_match_all that will get the file.html from the following examples: a href=file.html a href='file.html' a href=file.html frame src=file.html frame

[PHP] a href problem

2002-03-29 Thread Anders Henke
Hi folks! Im running this forum for Flash users and I have created it in Flash. Now, I've got this little problem... If a users writes a URL like http://www.test.com, the url becomes clickable thanks to the code below. $text = str_replace(, lt;, $text); $text = str_replace(, gt;, $text); $text

[PHP] Re: href and download

2001-08-12 Thread Richard Lynch
Use header(Content-type: application/octet-stream); There are also headers to prompt with the right filename. Search archives for Content-disposition -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD:

[PHP] Build HREF list from database???

2001-02-12 Thread andrew
Hi - I want to print a list of numbers linked to URLs I create on the fly - something like this: table: --- pathpid -|- foo.jpg 1 bar.jpg 1 ?php include("db_connection_params.inc"); //all relevant database variables $sql="select path from

Re: [PHP] Build HREF list from database???

2001-02-12 Thread David Robley
On Tue, 13 Feb 2001 15:24, andrew wrote: Hi - I want to print a list of numbers linked to URLs I create on the fly - something like this: table: --- pathpid -|- foo.jpg 1 bar.jpg 1 ?php include("db_connection_params.inc"); //all

Re: [PHP] Build HREF list from database???

2001-02-12 Thread Ankur Verma
Ankur Verma HCL Technologies A1CD, Sec -16 Noida, UP India - Original Message - From: "andrew" [EMAIL PROTECTED] To: "PHP General" [EMAIL PROTECTED] Sent: Tuesday, February 13, 2001 10:24 AM Subject: [PHP] Build HREF list from database??? Hi - I want to print a list