Weedpacket;10935461 wrote:Sorry, maybe I didn't use enough words (and I've figured out that by "formular" [sic] you mean querystring).
Since he wrote "without a formular", my interpretation is that he means "wihtout a form", and thus it would be possible to use a querystring. But we are playing guessing games...
So, if my guess is correct, then just tack on a query string with the id at the end of the url
?id=1234&anything_else=you_need
And that matches exactly what you yourself had in your original post, meaning that Weedpacket really did answer your very specific question. Along with the above, you would use
$id = (int) $_GET['id']
And you also got some additional information about your script not receiving a valid id. Here's some more info along the same lines
// make sure you have an id at all. wrap your entire image script in this
if (isset($_GET['id'])) {
}
And to get good answers, you need to ask good questions unless dealing with psychics. "which obviously doesn't work" is not very helpful (especially not when there is nothing wrong with that particular part). "Gives me the following error: ..." is a lot better. Or even "once I have this, what else is needed?".
clamicun wrote:
For whatever´s sake,
why didn´t you answer my very explicit question or did you not read the text ?
Really? Why bash the people trying to help you? Moreover, you actually really did get the help you asked for. So what's the problem?