Search results

  1. xPlozion

    [PHP] cut off 160 chars

    mind sharing function cutText()? although i think it just either returns one word separated by a space, or explodes it. i'm gonna go w/ the first :)
  2. xPlozion

    Cannot post after moving SMF forum here

    sorry, i don't know anything about the smf code, but does anything show up in your cpanel error log about this?
  3. xPlozion

    [PHP] cut off 160 chars

    anything to help ;)
  4. xPlozion

    [PHP] cut off 160 chars

    found it at php.net. it's in my first post as an edit. hope that works for you.
  5. xPlozion

    [PHP] cut off 160 chars

    if it's in the middle of a word, it will split the word. say your last word is 'hello', it will split it at 'he' if that's where the 160th char falls. i've seen various custom functions if it falls within a word, but i forget it, i'll try to look it up for you. [EDIT] try: <?php // Credit...
  6. xPlozion

    Hit Counter.

    i don't know if you're gonna be using mysql or a file to count the users, but i'll post below. the mysql one is assuming you've already got a connection open. <?php // Hit counter stored to file $loc = '/home/username/counter.txt'; $fp = fopen ($loc, 'w+'); $hits = fread ($fp...
  7. xPlozion

    [OFF] 1000 Credits for a CMS.

    no, i didn't assume, i did read that, but being the web developer doesn't really mean much to me. i've got a few projects which i'm a part of, and i could use more creds than being someone else's dev.
  8. xPlozion

    [OFF] 1000 Credits for a CMS.

    1000 creds seems low for a custom built cms ;)
  9. xPlozion

    Computer case

    i got the nzxt lexa at the beginning of the year for $90 i think w/ rebates and instant savings, but there's no savings except $5, which brings it down to $125 /wo shipping http://www.newegg.com/Product/Product.aspx?Item=N82E16811146018
  10. xPlozion

    Choice of Programming Language

    well, since i started w/ php, i want something that's c influenced (c, c++, javascript, php). if it's for the web, php all the way. for desktop purposes, i'd go w/ c++ or c, depending on the requirements and the gui's avail, but i'm pretty sure gtk works w/ both.
  11. xPlozion

    PHP help with mysql please

    wow, omg, i can't believe i over looked that :D
  12. xPlozion

    Webshow Design

    use pngs and make the layer that you want to be the transparent layer have transparency by sliding the bars in photoshop. make sure there's no layers under that layer or it'll show that instead of alpha transparency.
  13. xPlozion

    PHP help with mysql please

    try making $query = mysql_query("UPDATE users SET isactive='1',code='0' WHERE userid='$row[userid]'") or die('Could not connect: ' . mysql_error()); into $query = mysql_query("UPDATE users SET isactive='1',code='0' WHERE userid='".$row['userid']."'") or die('Could not connect: ' . mysql_error());
  14. xPlozion

    What's your Speed?

    i didn't even notice, but yea, they're getting annoying when i do notice it.
  15. xPlozion

    What IM network do you perfer?

    i use aim, live, icq and yahoo (using pidgin), but i chat using aim the most, because more people have it.
  16. xPlozion

    What's your Speed?

  17. xPlozion

    Looking For Help/Staff!!!!!!!

    Actually, you will need the ability to checkout from an svn repo. what i'm currently using on windows is tortoiseSVN. With svn and trac, it allows us to easily see what has been modified to the files that you upload. trac highlights what's been removed in red and what's added in green. trac...
  18. xPlozion

    What do you name your computers?

    mine are very basic, but they server thier purpose well. the one i'm using now is named after the case i use: "NZXT" since it's a custom build. the rest of the packaged computers are named after their manufacturers: emachine, vaio, compaq. then the special purpose computers are named after...
  19. xPlozion

    SQL Databases

    adfree and adenhanced lvl 2 offer 3 databases. adenhanced lvl 3 offer 5. if you need more than 5, then they've got paid hosting. http://x10hosting.com/hosting/adenhanced edit: wow, i didn't know they still had the double everything special still going on... i thought that was over a while ago :P
  20. xPlozion

    Is x10 hosting good ?

    i've only had one "minor" problem with my site (php level script messed up a backend feature, but the rest was still perfect), but x10 as many have said is much better than a lot of other free hosts out there. I know, i've been there. i've only seen one better, but they were bought out, and...
Top