Simple PHP Headers Syntax Question

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Simple PHP Headers Syntax Question

    What is the correct syntax to add a variable to a query string using the GET
    method of a form? I am trying to pass a dynamic variable ('$username'). Here is
    my code: header('Location: menu_short.php?name=$username'); I think I have to
    add an ECHO but I don't know the correct syntax. Any help is appreciated.

    jip Guest

  2. Similar Questions and Discussions

    1. Simple syntax question
      Hi I don't remember how to get the diplayed result broken in multiple lines. The command: mysql> SHOW INDEX FROM recentchanges; gives one...
    2. dummy here needs simple MySQL syntax help
      Need to retrieve a specific row from table but only have the record number ( from a previous queryname.currentrow) passed as a form var to reference...
    3. simple syntax issue?
      Hi, I just want a function to return true, but after a LoadVars.onLoad event. Am I right in assuuming that the return in the onLoad = function...
    4. Simple ANSI syntax Outer Join question
      Hello. I have an application that uses many *= and =* outer joins in its queries. In order to convert an older query into the proper syntax, I am...
    5. Simple Perl code/syntax question
      > Hallo everyone and thank you for your previous help Well there is the FAQ about case statements: perldoc -q 'switch or case' In your case...
  3. #2

    Default Re: Simple PHP Headers Syntax Question

    .oO(jip)
    >What is the correct syntax to add a variable to a query string using the GET
    >method of a form? I am trying to pass a dynamic variable ('$username'). Here is
    >my code: header('Location: menu_short.php?name=$username'); I think I have to
    >add an ECHO but I don't know the correct syntax. Any help is appreciated.
    1) The Location header requires an absolute address. See the header()
    manual for an example.

    [url]http://www.php.net/manual/en/function.header.php[/url]

    2) If you want PHP to replace the variable $username with its value you
    have to put the entire string into double quotes.

    [url]http://www.php.net/manual/en/language.types.string.php[/url]

    Micha
    Michael Fesser Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139