vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Help with some php code (https://vborg.vbsupport.ru/showthread.php?t=42242)

elmcitizen 08-13-2002 05:16 PM

Help with some php code
 
i know it sounds funny but im setting up a companies forum and do to formatting in their industry, they would like all the post/thread subjects (the title of the post) to appear in capitol letters. Heres the big problem, some of the titles will be combinations of numbers and letters. Is there some php code that can be added to the newthread.php file to do this? Any help would be greatly appriciated.

mr e 08-13-2002 06:57 PM

well strtoupper($string) will make $string uppercase

elmcitizen 08-14-2002 01:25 PM

ok but im having trouble finding it in the newthread.php file do i look in this file or is this something that can be handles in the templates? Also, having numbers and letters mixed (exaple:GJHJ76N88) wont screw up the strtoupper function?

mr e 08-14-2002 05:51 PM

ok i haven't tried this but see if this works, find this in newthread.php
PHP Code:

    $subject=censortext($subject);
    
$message=censortext($message);

    
// remove all caps subjects
    
if ($stopshouting and $subject==strtoupper($subject)) {
      
$subject=ucwords(strtolower($subject));
    } 

and below it add
PHP Code:

$subject=strtoupper($subject); 

hope this helps

elmcitizen 08-14-2002 11:14 PM

ok so this will turn everthing capital? thats what i want want. Im just confused reading the code, it turns everything to lower, then to upper?

mr e 08-14-2002 11:45 PM

no the first one is just saying if you have the "stop shouting" option on, to just capitilize the first letter of everything, after that i just made it capitilize EVERYTHING...just try it, you'll see

elmcitizen 08-15-2002 12:40 AM

thanks for all your help ill give it a go in the morning

mr e 08-15-2002 12:44 AM

your welcome :D


All times are GMT. The time now is 10:46 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01503 seconds
  • Memory Usage 1,721KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete