Posted by Michael Fesser on 05/08/07 16:24
..oO(Johnny BeGood)
>I need to send 2 variables to a script, not using a form but the following
>
><a href=Script_to_Call.php?SRID=$VAR1 & User=$VAR2'> Text </a>, is there
>something similar, I know this doesn't work!
This is a problem with your HTML. Always quote attribute values and
don't use spaces in URLs:
<a href="Script_to_Call.php?SRID=$VAR1&User=$VAR2">Text</a>
Micha
Navigation:
[Reply to this message]
|