Note that there are some explanatory texts on larger screens.

plurals
  1. POHelp passing _POST Form Data PHP
    primarykey
    data
    text
    <p>I apologize in advance, I am a PHP noob!</p> <p>I have form with some hidden fields. I need the values to POST to "submit_rma.php" so that they're not missing from the db--I need $qty, $estmate_id and $rma_type.</p> <p>The rest of the fields are just displaying data for the user and are readonly. Currently I only get value from the qty text field. </p> <p>Is there any easier way to pass these values? URL is out of the question due to security issues.</p> <pre><code>&lt;form method="post" action="submit_rma.php";&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; Quantity &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="qty" value="&lt;?php echo $qty ?&gt;" size="1"/&gt;&lt;br/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Part # &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="" value="&lt;?php echo $model ?&gt;" size="8" READONLY/&gt;&lt;br/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Description &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="" value="&lt;?php echo $name_EN ?&gt;" size="50" READONLY/&gt;&lt;br/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Paid Date &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="" value="&lt;?php echo $sold_date ?&gt;" size="6" READONLY/&gt;&lt;br/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Amount Each &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="" value="&lt;?php echo $dealer_price ?&gt;" size="8" READONLY/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;input type="hidden" name="estmate_id" value="&lt;?php echo $estmate_id ?&gt;"&gt; &lt;input type="hidden" name="rma_type" value="Short Shipped"&gt; &lt;input type="submit" name="submit";"&gt; &lt;/form&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload