I wanted to know everything about the "?" of action value of a form. As you see in the code below, We have a form (placed in
a php template) that sends user input to be put in the database with the value of "?" for the action attribute:
<form action="?" method="post">
<div>
<label for="joketext">Type your joke here:</label>
<textarea id="joketext" name="joketext" rows="3" cols="40">
</textarea>
</div>
<div><input type="submit" value="Add"></div>
</form>
We have also another template that shows the data stored in our database and as you see in the code below, this template has
a section with a link so that by clicking that link users can add data (jokes) in our database:
<body>
<p><a href="?addjoke">Add your own joke</a></p>
<p>Here are all the jokes in the database:</p>
<?php foreach ($jokes as $joke): ?>
<blockquote>
<p><?php echo htmlspecialchars($joke, ENT_QUOTES, 'UTF-8');
?>
</p>
</blockquote>
<?php endforeach; ?>
</body>
My first question is why we set the value of href attribute to be "?addjoke"? I mean what is the job of "?" in "?addjoke"?
Well, Another question is: We have an if statement in our index.php file that is like this:
if (isset($_GET['addjoke']))
{
include 'form.html.php';
exit();
}
I can't get the idea of "addjoke" variable in our $_GET array. I mean I know exactly what the $_GET array does but I can't
understand the whole idea of using "addjoke" variable. I mean what is exactly "addjoke" doing here?
So obviously I have a lot of problems with understanding the "?" character in URLs and I need your help :) All I know about
"?" is that this value is used when we need to point to the same page we're on. right?
I have other questions too, but that questions are kept to be asked another time ;) Thank you so much in advance.
