Hi, here in the attachment i have put the original link and php code by me please take a look and let me know what is wrong. I am not able to post that thing due to links in it so please just take a look. PHP: Hi this is the code of php which i am using original value="http://www.abc.com/page/123456" code: <?php $url = $_GET['id']; echo "value="http://www.abc.com/page/$url"; ?> But this is not working. Anything wrong here?
The echo statement should be like below: PHP: echo "value=http://www.abc.com/page/$url"; You have wrongly used the double quotes. There are three double quotes in your echo statement instead of 2.
i thnk hez rite but in case you are trying to assagn a value to a control like a button <input type="button" value="<?php echo "http://www.abc.com/page/" .$url ?>" />