Search results

  1. espfutbol98

    PHP date() alternitive

    Alright it works great! thanks everybody. is there by chance a way to change the encoding to koi8-r in something like Notepad2?
  2. espfutbol98

    Help with javascript photoalbum

    I have found this really nice photo album here and I am wondering how to integrate it with my site. I have the exact source (except for my own css and js files) here but it is still not working. I figure some server-side scripting is required but I can't find anything (like ajax) that would hint...
  3. espfutbol98

    PHP date() alternitive

    Thanks for the tip descalzo but I have PHP 5.2.9. I also tried putting the utf8_encode() in front of the arrays but it didn't change anything either.
  4. espfutbol98

    PHP date() alternitive

    In ISO-8859-1, the code returns: СегоднÑ￾ ”, 04. » 2009 In UTF-8, it returns Сегодня �, 04. � 2009 (When both the browser and file are in UTF-8) Are you guys sure it is a charset problem? I think it might be something wrong with the code. Could any of it have an error or be outdated?
  5. espfutbol98

    PHP date() alternitive

    //I tried: echo htmlentities('Сегодня '.date_ru('Д, d л Y')); //and echo utf8_encode(htmlentities('Сегодня '.date_ru('Д, d л Y'))); //but i still got random characters. the code you see above is //the only thing I have in the file so charsets can't really be //getting confused
  6. espfutbol98

    PHP date() alternitive

    I have been working on a site in a different language and because of that, I have to work my way around the date() function. I found this script in php.net but when I run it, it returns all of the numbers but not the words. They appear as a dimond with a question mark in it. I have already made...
  7. espfutbol98

    .htaccess acting up

    I just decided to rename the actual php files to reflect the .htaccess rules. I think it is a better system and is easier when editing files. Thanks again for all the help!
  8. espfutbol98

    .htaccess acting up

    WOW! Thank you very much! :) By the way, I'm not sure why I have the RewriteBase /. I guess I just found it with an online example of something else and didn't get rid of it for a lack of understanding what it is. Some things I have found: RewriteCond %(DOCUMENT_ROOT}/$1.php -f I think should...
  9. espfutbol98

    .htaccess acting up

    I have had some url rewriting problems but I usually just worked around them. The overall problem is basically, a rewritten url that is similar to another is redirected. And example is terror.audio. I redirected all .audio files to a special folder that holds mp3s. For some reason, it likes to...
  10. espfutbol98

    HTML Popup-like with previous page as background

    Sorry it took so long; I just had to blur some stuff out ;)
  11. espfutbol98

    HTML Popup-like with previous page as background

    Thank you guys. This should get me started.
  12. espfutbol98

    HTML Popup-like with previous page as background

    I would post a link but I cant. It is like when you view other peoples' friends the box "pops up". The odd thing is I have looked through the entire source code (with the help of CTRL + F) and have found that the code isn't even referenced? If anybody could give me just a short explanation (with...
  13. espfutbol98

    HTML Popup-like with previous page as background

    I was wondering if someone could show me how sites like Facebook have something that looks like a popup and shades the background previous page. I would normally look through the source code but as you might know, their source is complex and inelegant.
  14. espfutbol98

    Help with translation system (php)

    I have been translating my site by echoing variables that are in included files depending on a cookie. Example: index.php <?php if (isset($_COOKIE['lang']) && $_COOKIE['lang'] == "hr") { include "translation_hr.php"; } else { include "translation_en.php"; } ?> <html> <head> </head>...
  15. espfutbol98

    implementing openssl

    You can get a trusted ssl certificate for $30 from GoDaddy.com For using it on x10, if not sure but I think you need VPS.
  16. espfutbol98

    IE6 Styling Help

    Okay so basically I need to have an IE6 fix stylesheet? I got the source (like I said) from vlada.hr and they don't really have any HTML or CSS different from me but their site is perfect in all browsers. How is that possible? Maybe I forgot a </div> on a stylesheet or something.
  17. espfutbol98

    IE6 Styling Help

    <div id="maincontent-design"> <div class="maincontentheader"> <h1>Croatian Language Materials</h1></div><div class="content-view-children"> <div class="content-view-line float-break to_col_2">...
  18. espfutbol98

    IE6 Styling Help

    My site (https://podaci.co.uk/) is terrible in IE6. The logo looks wired, probably because it is a png while the original was a gif. Also, the right bar (where the login button is) is cut off sometimes. Yet another thing: some things should have some spacing (especially in the downloads). This...
  19. espfutbol98

    Help set up mail on hame server

    Thank you all for your responses but I have found a solution to this. The domain I bought (from GoDaddy) has mail included. I'm not sure if I could do this anyway. My ISP blocks port 80 so I have to use SSL 443. I'm assuming they block everything else too.
  20. espfutbol98

    PHP Security Functions

    I tried downloading it but I can't.
Top