Re: [PHP] pass parameter via URL

2013-05-20 Thread Matijn Woudt
On Mon, May 20, 2013 at 3:17 PM, iccsi  wrote:

> I would like to know how can I pass a parameter via URL using control
> value on the form.
> something like myPage.php?MyID=txtMyID.value
> I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value.
>
> Your help and information is great appreciated,
>
> Regards,
>
> Iccsi
>
>
How about just using ?
Put a normal submit button there and you're done (and as a bonus it takes
care of character escaping)

- Matijn


Re: [PHP] pass parameter via URL

2013-05-20 Thread shiplu
On Mon, May 20, 2013 at 7:49 PM, iccsi  wrote:

> Thanks for the message and helping,
> Your js looks like to parse URL.
> Please let me know if I am wrong,
> Do you have any code to generate the URL parameter using control value?
>
> Thanks again for helping,
>
> Iccsi,
>
>
> "shiplu"  wrote in message news:**CADO5mDCVbRquXCviuaY9fVajJb+**
> 6Ba872LbHrRHTdD8bJOATLg@mail.**gmail.com...
>


You can generate the url using string concatenation operator +.

To keep it consistent and out of error you need to reverse the same
function i have given then you can perform both. The idea is there.

-- 
Shiplu.Mokadd.im
ImgSign.com | A dynamic signature machine
Innovation distinguishes between follower and leader


Re: [PHP] pass parameter via URL

2013-05-20 Thread iccsi

Thanks for the message and helping,
Your js looks like to parse URL.
Please let me know if I am wrong,
Do you have any code to generate the URL parameter using control value?

Thanks again for helping,

Iccsi,


"shiplu"  wrote in message 
news:cado5mdcvbrquxcviuay9fvajjb+6ba872lbhrrhtdd8bjoa...@mail.gmail.com...


On Mon, May 20, 2013 at 7:17 PM, iccsi  wrote:


I would like to know how can I pass a parameter via URL using control
value on the form.
something like myPage.php?MyID=txtMyID.value
I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value.

Your help and information is great appreciated,



This is more a js question. Because form.controlname.value is only
available in javascript. A similar question I answered long ago on
Stackoverflow is
http://stackoverflow.com/questions/9009311/get-change-remove-url-parameters-with-jquery/9009558#9009558

And here is function I wrote that does it using pure javascript.
http://shiplu.mokadd.im/61/parse-query-string-by-pure-javascrirpt/



--
Shiplu.Mokadd.im
ImgSign.com | A dynamic signature machine
Innovation distinguishes between follower and leader 



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



Re: [PHP] pass parameter via URL

2013-05-20 Thread shiplu
On Mon, May 20, 2013 at 7:17 PM, iccsi  wrote:

> I would like to know how can I pass a parameter via URL using control
> value on the form.
> something like myPage.php?MyID=txtMyID.value
> I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value.
>
> Your help and information is great appreciated,
>
>
This is more a js question. Because form.controlname.value is only
available in javascript. A similar question I answered long ago on
Stackoverflow is
http://stackoverflow.com/questions/9009311/get-change-remove-url-parameters-with-jquery/9009558#9009558

And here is function I wrote that does it using pure javascript.
http://shiplu.mokadd.im/61/parse-query-string-by-pure-javascrirpt/



-- 
Shiplu.Mokadd.im
ImgSign.com | A dynamic signature machine
Innovation distinguishes between follower and leader


[PHP] pass parameter via URL

2013-05-20 Thread iccsi
I would like to know how can I pass a parameter via URL using control value 
on the form.

something like myPage.php?MyID=txtMyID.value
I can use myPage.php?MyID=1, but cannot use myPage.php?MyID=txtMyID.value.

Your help and information is great appreciated,

Regards,

Iccsi 



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