Jump to content

Variable variables


darkhappy

Recommended Posts

I am getting an error when processing this code - could anyone give me the proper syntax/puntuation for this?

 

 

 

<?php
while ($a = mysql_fetch_array($approvals)) {

             if(isset($_POST['{$a['approvals']}'])) {
                          $sheetid = $_POST['{$a['approvals']}'];
                          }
             }
?>

Link to comment
Share on other sites


<?php
while ($a = mysql_fetch_array($approvals)) {

             if(isset($_POST['{$a["approvals"]}'])) {
                          $sheetid = $_POST['{$a["approvals"]}'];
                          }
             }
?>

Link to comment
Share on other sites

Try this:

 

<?php
while ($a = mysql_fetch_array($approvals)) {

             if(isset($_POST[$a['approvals']])) {
                          $sheetid = $_POST[$a['approvals']];
             }
}
?>

 

The syntax for how you were trying to do it is like this:

 

$val =  "{$a['approvals']}";

Link to comment
Share on other sites

i will have to try that next time... instead i tweaked this function to pull the key out of the variable once it is posted. lots of work for a 1 little number hehe!

 

 

<?php
function get_sheet() {
$context = '_POST';

global $$context;
if(isset($$context)) {
        foreach($$context as $k => $v) {
                $sheetid = $k;
                }
        }
}
get_sheet();
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.