Forum: Existing Scripts Jun 1st, 2005 |
| Replies: 35 Views: 104,544 phpBB is pretty much just as safe as any other board.
The only thing I'll complain about is the slow development of 2.1.x. But then, they have recently made some changes in the development team... |
Forum: Existing Scripts Jun 1st, 2005 |
| Replies: 10 Views: 4,924 I'm with csgal about Simple Machines, I don't like it at all. It's too un-simple in my opinion., and I just don't like it.
I like phpBB the most, it's easy to admin, and there are lots of ways to... |
Forum: PHP May 31st, 2005 |
| Replies: 8 Views: 8,396 Try this:
On your form, have the field for their name called "name".
The field for their email should be called "email".
Now, below is the PHP code for the page you submit the form to.
<?php... |
Forum: MySQL May 31st, 2005 |
| Replies: 4 Views: 2,252 Haha. That can do it alright! I'm glad I could help. |
Forum: MySQL May 29th, 2005 |
| Replies: 3 Views: 3,814 Well, he simply wants to know how to create a database and set it up to use phpBB.
Does your webhost have cPanel? |
Forum: MySQL May 29th, 2005 |
| Replies: 4 Views: 2,252 From what I see... In the first one, you forgot the opening parenthesis. In the second one, you have mismatched values.
Try this:
$sqlquery = "INSERT INTO $table VALUES... |
Forum: PHP May 29th, 2005 |
| Replies: 7 Views: 12,590 Well, they do there's in some way with PHP. You can go to Weather.com and get a Javascript code block with current conditions, though. |
Forum: PHP May 29th, 2005 |
| Replies: 2 Views: 23,450 I believe that instead of echoing the thank you message, you can have it do a redirect instead.
Change this:
echo "$thanks";
To this:
header("Location: page_to_redirect_to.php"); |
Forum: PHP May 29th, 2005 |
| Replies: 8 Views: 8,396 What exactly do you want the form to do?
Would you like it to just send you an email with their name and email? If so, this is an easy PHP project. :cheesy: |