Jump to content

Cronthenoob

Members
  • Posts

    312
  • Joined

  • Last visited

Posts posted by Cronthenoob

  1. Well, the $_GET method pulls value from the URL. From the looks of it, you arent ever sending the industry_id to the URL. Unless I just can't read.I also noticed your form doesnt have a method or an action.

    VS.Php

    its a neat application, but I don't know if its worth the 150 bucks for the standalone edition or 50 bucks for the addon the Visual Studio. I'd rather save my money and just upload and refresh as I go.

  2. Well heres why I won't be going to buy an apple iTV1.)Its going to be $2992.)I have an iPod video and a sweet little gadget that plays my iPod videos and music on my TV.3.)It doesnt record TV, it only plays files from your computer.So have you made a choice yet Vchris??? :)

  3. Possibly but you can have a wireless PC (mini tower or even a laptop) that connects to the network in your house and could play media from any of those computers onto your TV.I am not saying (well maybe I am) that it is not worth the price (way over-priced) Apple will sell if for but you can do anything iTV can do with a relatively inexpensive PC and WMC.
    I think part of apples price is in the style. Most of the products they come out with just look amazing. How sleek would a big computer tower in your entertainment center look? Not to mention the extra amount of electricity that computer would be using compared to a smaller device.
  4. A major con is application compatibility.
    They have a few applications you can install to fix that however.You can get Bootcamp, wich allows you to boot to a windows XP partition on your harddrive. Also a program called Parrallels allows you to run windows in its own window at the same time you are running MAC OS. The problem with Parrallels is that it doesnt render 3-D graphics very quickly and it doesnt have USB support.
  5. Well first of all, your hosting service needs to support asp. To put an asp page on the web you just save it as "myfile.asp" be sure to type the .asp. And then upload it.In the actual page you'll need to start asp<% ASP code goes here%>If you are wanting to use your home PC as a host, I'm pretty sure you'll need XP pro or MS server to install IIS.

  6. I went through the CSS tutorial and tried using the vertical-align attribute. And it isnt vertically aligning my divs contents. Heres the code. The problem is with the loginarea div.

    <html> <head> <style type="text/css">  body {   margin-top:25px;   margin-bottom:25px;   margin-left:5px;   margin-right:5px;   background-color:black;  }  .mainwrapper {   width:100%;   margin:0px;   padding:0px;   text-align:left;  }  .header {   width:100%;   border:1px solid grey;   height:100px;  }  .loginarea {   color:white;   width:100%;   border:0px;   padding:1px;   height:50px;   background-image:url('images/bg-1.gif');   vertical-align:middle;     }  .footer {   width:100%;   height:24px;   background-color:#E4E4E4;  } </style>  <title>	Title  </title> </head> <body>  <div class="mainwrapper">   <div class="header">   </div><br />   <div class="loginarea">   Username:<input type="text" name="username" />   Password:<input type="password" password="password" />   </div><br />   <div class="footer">   </div>  </div> </body></html>

×
×
  • Create New...