This topic is locked

Fields in Hyperlink

9/12/2010 9:39:32 AM
PHPRunner General questions
C
cis2131 author

How can i use fied values in the view as hyperlink?
I have tried this in the url prefix field:

http://server.com/shell/command.php?ip=$data["server_ip"]&command=
But it dosen't work.
Anyone knows how to du this?
Claus

ladykathleen 9/12/2010

When I did a hyperlink for mine I used the edit the field properties then under the view as I selected Hyperlink.
I hope that helps
Opps sorry did not read your post all the way...

is there a way to add quotes around the command part?

Sergey Kornilov admin 9/13/2010

Claus,
you need to clarify what exactly doesn't work.
I suggest to post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL. 'Demo Account' button can be found on the last screen in the program.

C
cis2131 author 9/13/2010



Claus,
you need to clarify what exactly doesn't work.
I suggest to post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL. 'Demo Account' button can be found on the last screen in the program.


All i want to do is append certain values in the url prefix with values from the database.

How do i use those values in the prefix link.

E.g.

http://server.com/shell/command.php?ip=$data["server_ip"]&command=$data["command1";]
A
ann 9/15/2010

Claus,
unfortunately, no.
As workaround you can use Custom format (View as settings dialog):

$value="<a href=\"http://server.com/shell/command.php?ip=".$data["server_ip"]."&command=".$data["command1"]."\">".$value."</a>";;
C
cis2131 author 9/15/2010



Claus,
unfortunately, no.
As workaround you can use Custom format (View as settings dialog):

$value="<a href=\"http://server.com/shell/command.php?ip=".$data["server_ip"]."&command=".$data["command1"]."\">".$value."</a>";;



Thank you very much, that works fine.
I have tried almost anything, but can't get it right.

Could you please help me how to make The link open in a new window.
Claus