PHP Bugs  
php.net | support | documentation | report a bug | advanced search | search howto | statistics | login

go to bug id or search bugs for  

Source of: /index.php

<?php /* vim: set noet ts=4 sw=4: : */
require_once 'prepend.inc';

if (isset(
$cmd) && $cmd == "display") {
    
header("Location: search.php?$QUERY_STRING");
    exit;
} elseif (isset(
$id)) {
    
header("Location: bug.php?$QUERY_STRING");
    exit;
}

commonHeader();
?>

<h1>Report a Bug</h1>

<p>Before you report a bug, please make sure you have completed the following steps:</p>

<ul>
<li>Used the form above or our <a href="search.php">advanced search page</a> 
to make sure nobody has reported the bug already.</li>

<li>Made sure you are using the latest stable version or a build from SVN, if
similar bugs have recently been fixed and committed. You can download 
snapshots at <a href="http://snaps.php.net/">http://snaps.php.net</a></li>  

<li>Read our tips on <a href="how-to-report.php">how to report
a bug that someone will want to help fix</a>.</li>
<li>See how to get a backtrace in case of a crash: 
 <a href="bugs-generating-backtrace.php">for *NIX</a> and
 <a href="bugs-generating-backtrace-win32.php">for Windows</a>.</li>
<li>Make sure it isn't a support question. For support, see the
<a href="http://www.php.net/support.php">support page</a>.</li>
</ul>

<p>Once you've double-checked that the bug you've found hasn't already been
reported, and that you have collected all the information you need to file an
excellent bug report, you can do so on our <a href="report.php">bug reporting
page</a>.</p>

<h1>Search the Bug System</h1>

<p>You can search all of the bugs that have been reported on our
<a href="search.php">advanced search page</a>, or use the form
at the top of the page for a basic default search.  Read the 
<a href="search-howto.php">search howto</a> for instructions on 
how search works.</p>

<h1>Bug System Statistics</h1>

<p>You can view a variety of statistics about the bugs that have been
reported on our <a href="bugstats.php">bug statistics page</a>.</p>

<?php
commonFooter
();

The syntax highlighted source is automatically generated by PHP from the plaintext script.
If you're interested in what's behind the commonHeader() and commonFooter() functions, you can always take a look at the source of the layout.inc files. And, of course, if you want to see the source of this page, have a look here.


show source 

PHP Copyright © 2001-2009 The PHP Group
All rights reserved.
Last updated: Fri Jul 17 19:37:57 2009 UTC