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 * pagestart.inc
* ------------------- * -------------------

View file

@ -1,4 +1,4 @@
<? <?php
include('../extension.inc'); include('../extension.inc');
include('../config.'.$phpEx); include('../config.'.$phpEx);
include('../includes/constants.'.$phpEx); include('../includes/constants.'.$phpEx);
@ -41,22 +41,22 @@ Hello, welcome to this little phpBB Benchmarking script :)<p>
At the moment there are:<br> At the moment there are:<br>
<table> <table>
<tr><td align="right"><?=$nr_of_users?></td><td>Users</td></tr> <tr><td align="right"><?php echo $nr_of_users?></td><td>Users</td></tr>
<tr><td align="right"><?=$nr_of_topics?></td><td>Topics</td></tr> <tr><td align="right"><?php echo $nr_of_topics?></td><td>Topics</td></tr>
<tr><td align="right"><?=$nr_of_forums?></td><td>Forums</td></tr> <tr><td align="right"><?php echo $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_posts?></td><td>Posts</td></tr>
</table> </table>
<p> <p>
What do you want to create?<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="users" size="3"> Users<br>
<input type="text" name="forums" size="3"> Forums/categories<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="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"> <input type="submit" name="submit">
</form> </form>
<? <?php
} else { } else {

View file

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

View file

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