Search results

  1. MasterMax1313

    a little javascript regex help

    i have what seems to be a regex that should work, but isn't. var result = /[0-9]+/g.exec(enteredTime); input : 00:05 result: one value of 00. i've tested it on another javascript regex evaluator site which seems to work fine with the result of 00 and 05. any help would be appreciated. edit...
  2. MasterMax1313

    javascript hotkeys

    what i'm trying to do is capture certain types of key events with javascript. it's akin to using the text editor for the forums here, if you press ctrl+b then the text is bold, but the bookmarks don't come up. in my application i can get the event captured, the equivalent to making the text...
  3. MasterMax1313

    A little help with mySQL and SQL ORDER BY with dates

    I've got an SQL statement SELECT * FROM MINUTES ORDER BY Mod_Date DESC LIMIT 0, 10; where Mod_Date is a date data type. as you can probably see what I want to do is sort the output in descending order by date. this however is apparently not the way to do so. so can anyone lend a hand with...
  4. MasterMax1313

    Some CSS help please (a tad maddening)

    I have this school website that I'm working on porting over from static html to php, from one server to another, and from using gobs and gobs of tables, to using divs. I had most of it working, except that I was using CSS bottom, absolute positioning to place a couple of footers on the page...
  5. MasterMax1313

    a little css help, please

    I'm trying to make a site with what is in essence, a footer, in the main (center) div. So basically a div w/in a div. I've done this before and it works fine (in progress). However, in this new site, if I use width = 100%, it takes the width of the page, rather than the parent container. So I...
  6. MasterMax1313

    Font Combobox

    Chances are, there is no easy way to do this, though I figured I'd post here and see if anyone has a novel approach. What I'd like to do is allow a user to choose a font for their page, through the use of a combobox, javascript, and possibly PHP. My question, is there some way to popluate the...
  7. MasterMax1313

    some html help, plz

    Ok, so I'm still kind of new to formating my html so that it looks exactly the way I want it to look. I need some help coming up with some html source code for the image that I've attached to this post. Basically, I know that I could use a table, but I'm trying to avoid using one as it would get...
  8. MasterMax1313

    Java Server Pages (JSP)

    I was wondering if JSP is supported here at X10? I realize that PHP is supported and that ASP.NET is being tested, but since JSP is platform independent (so I think, as long as the JDK is installed, I think), I thought that it might be supported. If not, is there any way to get it activated for...
  9. MasterMax1313

    ASP - Supported?

    I was wondering, is ASP supported (able to execute) here? I read the post here http://forums.x10hosting.com/free-hosting/33394-active-server-pages.html?highlight=active+server+pages, but it didn't mention classic ASP. According to http://www.free-webhosts.com/reviews/X10Hosting.php, x10 does...
  10. MasterMax1313

    upload to database issue

    I'm trying to make a simple upload site, where a user can upload an image to my database (longblob). I've upgraded to Intermediate (v2), so my upload size (and i suppose timeout). However, I'm having issues with my php. The code is below. The issue I'm having is that it won't upload with sizes...
Top