Jump to content

Sangha-08

Members
  • Posts

    62
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Sangha-08's Achievements

Member

Member (2/5)

0

Reputation

  1. Thanks for all your help.
  2. Oh also, could you please mark this topic as solved? thanks.`
  3. LOL, kk have fun
  4. Try something like <?php $query = $_GET['query']; $query = strtolower($query); $query = ucwords($query ); echo($query); ?>
  5. Yeah, there will always just be one number, but not one digit number, if you know what I mean. omg, thanks for all your help
  6. You might want to use something like FFMPEG http://ffmpeg.org/ I'm sure it'll do the trick.
  7. Exactly, and they're bad for SEO, and usually make the site look very unprofessional. Just use css divs, if you're having trouble placing files in the template, and use <?php include('whatever.php'); ?> rather than html iframes.
  8. Nope, there can be (sometimes) more characters after the number
  9. is there any other way, btw, I want it to do +1 to every number in the script... Ive searched google for, well, about 2 hours. I still cant get anything..
  10. I've currently got a basic php script to format the query, I'm new to php. Here is the script that I have: $titlea = $_GET['title']; $titlea= str_replace ("-", " ", $titlea); $titlea = ucwords($titlea); $titlea= str_replace (" ", "_", $titlea); echo($titlea); This converts the query "php-freaks-is-awesome" to "Php Freaks Is Awesome" But, If i send it a query, something like "show-search-1" I want it to produce an output of "show-search-2" which is basically +1 to the number in the query, does anybody know how I can do this? I've looked everywhere but I am unable to do this. Could someone tell me how to do this? Thanks.
  11. Yeah, I just got it at the end: <?php $titlestring = $_GET['title']; $titlestring = str_replace ("-", " ", $titlestring); $titlestring = ucwords($titlestring); echo($titlestring); ?> Thanks for the help everyone
  12. I still can't get it right :'( :'( :'( :'( :'( ??? ??? ??? ??? ??? :'(
  13. <?php $titlestring = $_GET['title']; $titlestring = str_replace ("-", " ", $mod1); $modtitle = ucwords($mod1); echo($modtitle); ?> I can't get it to work, I want the string "this-is-so-lame" to "This Is So Lame", but the script above doesn't work, could someone tell me what I'm doing wrong? Thanks.
  14. You have to end the img tag n00b! >_> try [/img]
  15. Oh, sorry, sorry, my fault I figured it out now. thanks for you help LOVE YOU GUYS!!!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.