Search results

  1. jasgor9

    PHP Problems

    When i did a PHP include on my site when i created it, it worked fine. Now, any include() functions are giving me errors. Here is the page to see the problem: http://www16.telvior.com/index2.php ...And in my x10hosting.com/account, nothing is down but dns. The faster i get a response the...
  2. jasgor9

    3 Great ways to get pass school filters

    ...OR just go to http://www.proxybuilder.com/ and build one on your site that's probably not blocked!!!
  3. jasgor9

    How to stretch a site on any screen, anyone?

    do it in css: body { width:100%; height:100%; }
  4. jasgor9

    Speed Up Firefox. Really Works!

    It does work! Nice.
  5. jasgor9

    iframes

    An iFrame is an HTML element that is used to add inline web pages to another. To use it: ...html code... <iframe src="INLINE PAGE URL"></iframe> ...html code... for more: http://www.w3schools.com/TAGS/tag_iframe.asp
  6. jasgor9

    Critique?

    My website has been down for a month because my x10 account had some problems and i had to start coding my site over again. I used a free web template, so i don't need that critiqued, rather Could someone critique my Content? http://www.telvior.com/ ...and over that month, i have lost much...
  7. jasgor9

    My first CSS Template

    I just made my first XHTML 1.1 valid CSS template. What do you think of it? It is very basic, because it is my first. Any tips? (And i know the contrast is off somewhat, but i can tweak it.) Design URL: http://www.telvior.com/templates/AquaWeb
  8. jasgor9

    Cookie Help (the one below didn't help)

    Yeah i did it with Sessions and now it works! Thanks.
  9. jasgor9

    Cookie Help (the one below didn't help)

    Sorry to repost, but i have already tried that and it didn't work.
  10. jasgor9

    Cookie Help (the one below didn't help)

    I have a login page, which sends 2 variables (via POST) named username and password. The password is md5-ed, because the password in the MySQL Database is stored under MD5 encryption. The browser is sent to this page, which processes the form. If the user enters correct information (username...
  11. jasgor9

    Basic Ruby Question

    I am learning Ruby and can't figure out this: does ruby have opening/closing tags like PHP (<?php ?>) and ASP (<% %>) ? I tried making a Ruby page with this code: puts "Hello, World" ...but when i viewed the page it just said 'puts "Hello World"' If there aren't tags, then how can i...
  12. jasgor9

    SOC Help

    I have ads that i want to load last on a page (after the content) with source-ordered-content: <script name="myAd" language="text/javascript" src=""></script> and at the end of the page, i put <script language="JavaScript">...
  13. jasgor9

    Ad Code Issue

    I have the ads for the corperate package before the content on my site. The site sort of half-loads and sits there for a second or two while the ad loads. Then the content shows. How can i show the content before the ads AND without an iframe? (the only reason i don't like an...
  14. jasgor9

    Float CSS

    I have a div that is wide and not tall. i want text to go on both sides, for example: ____________________ |Welcome---------Login| ____________________ but when i float both, it works in Opera, but in IE and Firefox it does this: _________________________ |Welcome----------------------|...
  15. jasgor9

    PHP Problem/Ad Problem

    PHP Problem: i have a php login script that always says the password is incorrect: $username = $_POST['username']; $password = md5($_POST['password']); mysql_connect("localhost", "username", "password"); mysql_select_db("jasgor9_memberdata"); $chk = mysql_query("SELECT * FROM...
  16. jasgor9

    PHP Get Vars

    How can i do something like in the ad codes for free members where you have a variable in the url with no value? Example: http://www.mysite.com/myfolder/?variablename
  17. jasgor9

    Ads loading

    As you can see on my website, everything after the ads loads after them. the ads are slow to load. i tried changing the SRC to blank and load the SRC with javascript after the rest of the content, but that just moves the ads to the bottom of the page. is there any way to load the ads after...
  18. jasgor9

    About Website

    I am running a website on Stoli, and it won't load unless i am behind a proxy. Someone in the IRC chat told me what it was, but i didn't remember it. So... What is the Problem? When will it be fixed? Who is affected? What can I do to get my site online during this issue, if any?
  19. jasgor9

    Rails Support

    Does X10 support Rails?
  20. jasgor9

    Should I Use PHP?

    I am putting an 'updates' area on each page of my new design. I want to be able to edit this, but doing it in HTML would mean that when i edit it, i will have to edit every page. I thought of using PHP includes, but that makes loading slow. Is there another way to do this?
Top