Jump to content

robert123

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

robert123's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thanks everyone, I got it working now. That did the trick.
  2. Hi, this is probably something very simple I am missing as I am not to familiar with php, but I have a variable declared as $id and I want to pass it in the url to the next page. I thought you did this by adding this ?value=echo $id; It did not send $id to the next page, is seems to just send "echo". If I leave out the echo and just have ?value=$id; will that work? here is part of my code: <? $landingpage[1] = 'http://www.website.com/page1.php?value=echo $id'; ?> thanks
  3. Thanks so much, I just tried it and it works great.
  4. Hi, I am very new to php and just cannot figure this out. I am trying to use a link to send a value to the next website page. For example I am using this code but it is not working right. I assigned a keyword a number value and want to pass that value to the next page. When use echo $id on the first page, it shows me the value so I know it worked, but I can't send the data to the next page. href="h*ttp://www.website.com/page.php?ORDER=<? '.$id.' ?>" $id has a number value that I want to read from the next page, but with this code on the destination page it will not show me the value it just is blank. <?php $id = trim($_GET['ORDER']); echo $id; ?> I hope you understand what I was trying to say. Thanks, Robert
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.