Help with large php variable?

by 2 replies
3
Hi, I'm working on a site for a project, and it involves a form with a field to describe something.

For example, a job board. When the user $_POSTs the job description (which is likely to exceed the 100 characters allowed by $_GET), how do I retrieve it on the handling page?

Any help or advice would be greatly appreciated.

Thanks,

Andy.
#programming #large #php #variable
  • Ignore, think I just COMPLETELY misunderstood something, sorry.
  • $post_value = $_POST["input_name"];

    Just replace input_name with the name of the form input from the sending page. For example, if one of the inputs on the sending page was named "job_description", then you could do something like this on the form "action" page...

    $job_description = $_POST["job_description"];
    • [ 1 ] Thanks

Next Topics on Trending Feed

  • 3

    Hi, I'm working on a site for a project, and it involves a form with a field to describe something. For example, a job board. When the user $_POSTs the job description (which is likely to exceed the 100 characters allowed by $_GET), how do I retrieve it on the handling page?