Guestbook without php

Solved
romaco82 Posted messages 17 Status Membre -  
 star -
Hello,
I would like to add a guestbook to my website, but my remote server (confirmed orange site) does not accept PHP. Is there another solution to insert a guestbook? I created my site using Dreamweaver.
Thank you for your help.
Configuration: Windows XP Firefox 2.0.0.14

7 réponses

macgawel Posted messages 676 Status Membre 89
 
Small clarification:
It is entirely possible to create a guestbook without PHP (in fact, guestbooks existed before the use of scripting languages).

Basic principle of the guestbook:
A guestbook consists of two parts:
- Displaying messages.
Basically, it's an HTML page. For this part, PHP is optional...

- The ability for visitors to send messages.
This part can be broken down into several steps (the procedure):
1. Sending the message.
2. (Optional) Verifying the message.
3. Recording the message in the display page (or in a file/table usable with PHP for display).

In fact, PHP only serves to automate the procedure. You can do all these steps manually:
1. The visitor sends the message by email (through an HTML form).
2. You check (more or less) the emails regularly.
3. You update the HTML display page.
4. You upload the updated page online.
Of course, if you expect dozens of messages daily, it's unmanageable, but if you expect to receive a message once in a blue moon, it’s not an issue.

You could even design a small script/program on your PC to manage that...
5
dugenou Posted messages 6262 Status Contributeur 1 456
 
Hello,

You can use a guestbook located on another server, such as:

https://livredor.hiwit.org/
http://www.weboutils.com/livredor/
1
romaco82 Posted messages 17 Status Membre 1
 
Thank you for your responses that address my problem very well. I finally understand what PHP is for, thanks to Lewis's clear and precise explanation. My server is Orange, and in order to access PHP, I need to upgrade the site to a professional level, which requires paid hosting. I will therefore try Duguenou's solution.
0
Grunt Posted messages 2845 Status Contributeur 301
 
In your place, I would look for another host. Free offers 10 GB for free, with PHP. What more could people ask for?
0
romaco82 Posted messages 17 Status Membre 1
 
Thank you MacGawel for your proposal. It seems obvious, but I hadn't thought of it. Why make things complicated when you can keep it simple? Indeed, in my case, I don't expect to receive a lot of messages, so I think I will use this solution.
0
star
 
HELP !

http://cacapartout.tripod.com
0
lewis34 Posted messages 2557 Registration date   Status Membre Last intervention   352
 
Hello, in my opinion, it's hardly possible without PHP
PHP is a server-side language, meaning it operates directly on the server to insert and retrieve data that the visitor inputs or views.

JavaScript, for example, is a client-side language, so I find it hard to see how to insert text into a database without PHP and MySQL

Maybe there's a configuration to set up on your remote server
-1