1. Okay (but still need to know coz I have seen it at few places)
2. This means my whole code in page.php would be wrapped with this ?? like below:-
PHP Code:
if(!$vbulletin->option['pageenable'] AND is_member_of($vbulletin->userinfo, 6))
{
if(empty($_REQUEST['do']))
{
# Go to a default catch all
$_REQUEST['do'] = 'main';
}
if($_REQUEST['do'] == 'main') {
// Main page code
}
if($_REQUEST['do'] == 'sub1') {
// sub page 1 code...
}
if($_REQUEST['do'] == 'sub2') {
// sub page 2 code...
}
//and so on..
}
else
{
eval(standard_error(fetch_error('error_sorry_noaccess')));
}
Is this correct ??
3. Okay, I'll check it out
4. So, is it okay to NOT to use backticks ?
5. Ah.. why I didn't thought of that .. thanks
6. So, if I'm not using any other language, is it okay to NOT to use phrases at all for simple text ?
7. See, I am inserting current time in this format
$TIMESTAMP=date('jS \of F, Y h:i:s A'); , and simply retrieving it. It shows time in GMT to all. Can you please give an example of this on how to use vbdate().
Thank You so much