Hi. I've already post a question about this but I could be not so clear as I expected.
The question is: could php not assume a variable sent by a url link created dinamicaly? I mean, i had a while loop where a few links are created associated with the same variable but different values(codes)
While (xxx) {
printf("<td><a href=\"deliver.php?codc=%s\"><b>%s</b></a> Stock: %s</td>\n",$myrow["codc"],$myrow["name"],$myrow["unit"]);
}
As you can see, variable <codc> cold be used for one or more links. When i call the deliver.php page, the variable and the number associated goes ok. But when i call the variable in a sql query the variable is empty. This doesn't happens when i use a single link(not dynamic)in other php pages. Any clue? Thanks