1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 15:17:16 +01:00
git-svn-id: file:///svn/phpbb/trunk@1014 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt 2001-09-08 22:58:10 +00:00
parent 3a56a22f25
commit 19ca822630
4 changed files with 12 additions and 13 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
/***************************************************************************
* pagestart.inc
* -------------------
@ -48,4 +48,4 @@ if ($no_page_header != TRUE)
include('page_header_admin.'.$phpEx);
}
?>
?>

View File

@ -1,4 +1,4 @@
<?
<?php
include('../extension.inc');
include('../config.'.$phpEx);
include('../includes/constants.'.$phpEx);
@ -41,22 +41,22 @@ Hello, welcome to this little phpBB Benchmarking script :)<p>
At the moment there are:<br>
<table>
<tr><td align="right"><?=$nr_of_users?></td><td>Users</td></tr>
<tr><td align="right"><?=$nr_of_topics?></td><td>Topics</td></tr>
<tr><td align="right"><?=$nr_of_forums?></td><td>Forums</td></tr>
<tr><td align="right"><?=$nr_of_posts?></td><td>Posts</td></tr>
<tr><td align="right"><?php echo $nr_of_users?></td><td>Users</td></tr>
<tr><td align="right"><?php echo $nr_of_topics?></td><td>Topics</td></tr>
<tr><td align="right"><?php echo $nr_of_forums?></td><td>Forums</td></tr>
<tr><td align="right"><?php echo $nr_of_posts?></td><td>Posts</td></tr>
</table>
<p>
What do you want to create?<p>
<form method="get" action="<?=$PHP_SELF?>">
<form method="get" action="<?php echo $PHP_SELF?>">
<input type="text" name="users" size="3"> Users<br>
<input type="text" name="forums" size="3"> Forums/categories<br>
<input type="text" name="posts" size="3"> Posts/topics (optional: post size in <input type="text" name="size" size="3"> bytes)<br>
<input type="submit" name="submit">
</form>
<?
<?php
} else {
@ -297,4 +297,4 @@ function get_userdata($username, $db) {
}
?>
?>

View File

@ -1,4 +1,4 @@
<?
<?php
$phpbb_root_path = "../";

View File

@ -1,5 +1,4 @@
<?
<?php
$phpbb_root_path = "../";