I try to pass an argument to be able to trace in a PHP page.
HT_courriel.ShowURL “http://1domaine.com/FR/creer_courriel.php?courriel=”+T_ID.Text
All my experiments have failed.
Is it possible with Xojo web?
Alain
I try to pass an argument to be able to trace in a PHP page.
HT_courriel.ShowURL “http://1domaine.com/FR/creer_courriel.php?courriel=”+T_ID.Text
All my experiments have failed.
Is it possible with Xojo web?
Alain
What exactly is in that field? It probably has to be properly encoded.
I should have been more specific. Try:
HT_courriel.ShowURL _
"http://1domaine.com/FR/creer_courriel.php?courriel=" + EncodeURLComponent( T_ID.Text )
It’s probably better, but nothing is changed.
Has anyone tried to do something similar with XoJo?
I look at different ways with the PHP code as well.
I have and it works fine.
[quote=54535:@Alain Lortie]It’s probably better, but nothing is changed.
Has anyone tried to do something similar with XoJo?
I look at different ways with the PHP code as well.[/quote]
Does it work in a browser?
by hand?