Lesson 17 - Guestbook in PHP - continuation
In the previous lesson, Putting PHP interfaces into practice - GuestBook, we started with working on a guestbook with a modular captcha using interfaces. Today, we are going to finish up with this short project.
Printing the form
The next public method for our guestbook will be the renderForm() method. Here's what it will look like:
public function renderForm() { $name = (isset($_POST['name']) ? $_POST['name'] : ''); $message = (isset($_POST['message']) ? $_POST['message'] : ''); echo('<form method="post"><table>'); echo('<tr><td>Name</td>'); echo('<td><input type="text" name="name" value="' . htmlspecialchars($name) . '" /></td></tr>'); echo('<tr><td>Message</td>'); echo('<td><textarea name="message">' . htmlspecialchars($message) . '</textarea></td></tr>'); echo('<tr><td colspan="2">'); $this->captcha->render(); echo('</td></tr></table><input type="submit" />'); echo('</form>'); }
If the user enters an invalid anti-spam verification, we'll use the data that was to be sent to pre-fill the form again and ask the user to enter the anti-spam verification correctly.
The first two lines in the method determine whether
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this lesson, we're going to finish our PHP guestbook and change it's captcha implementation to image-based responses using our modular interface.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.