Search results

  1. Q

    How to get TimeZone in Php 5.0.4 ?

    I don't want to set the timezone but I want to display it, for some reason date('e') does not work, or output any timezones. Thanks! Also if i do date('T') which is suppose to be abbreviation it gives me the full name of timezone for example: instead of EST I get Eastern Standard Time.
  2. Q

    In PHP what is the difference between outputting a variable in quotes vs...

    ...quotes and brackets? For example "$var" vs. "{$var}" it seems to produce the same results so I was just wondering what the difference really is. Thanks!
  3. Q

    PHP How to Character Limit or Word Limit while Ignoring Spaces or HTML Tags?

    I have been able to setup character limits and word limits with substr() and a custom function, also I strip_tags and allow tags, but how would you write a function that skips spaces or at very least skip spaces, so it does not count a space as a character. Thank you!
  4. Q

    Cane Moo Tools Request.js write html in a Div or Element?

    I created a request that works, onSucess: function(responseText, responseXHTML){ $('idofelement').innerHTML = reponseText}); the only problem with this is, I would love for the javascript to write the actual response into the page, because when I view the source nothing comes out, which I need...
Back
Top