If you are looking to create a thread or just generally posting, you might want to read up on these guidelines. They may help get you more replies, and quicker responses.
Please note that these are only guidelines, not rules.
- Use the PHP BBCode tags. *Look below
- Indent your code
- Remove sensitive information
- Research! Check Google, the PHP Manual and MySQL Manual before posting
- State the problem in the subject line -- not "Help"
- If you figure out a solution, post it!
- If someone else's solution works, say so!
- Don't hijack other threads with your question.
Use PHP BBcode tags. The tag's use is shown below.
[php]
<?php
?>
[/php]
You can help people help you, by running the following script on your server and including it in your topic post.
PHP Code:
<?php
echo 'PHP Version: ' . phpversion() . '<br />';
echo 'Display Errors: ' . ( ini_get( 'display_errors' ) == '1' ? 'On' : 'Off' ) . '<br />';
echo 'Error Level: ' . ( ini_get( 'error_reporting' ) == '2047' ? 'E_ALL' : 'Not E_ALL' ) . '<br />';
echo 'Register Globals: ' . ( ini_get( 'register_globals' ) == '' ? 'Off' : 'On' ) . '<br />';
?>
NBS
Bookmarks