Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: anulaibar
  • Content: Threads
  • Order by date
  1. anulaibar

    Invalid system disc

    I have an old computer running win95, that I thought I'd set up as a server, so I installed two network cards. I tried to get the drivers installed, but was asked for the win95 cd, which I didn't have, so I decided to format c: and install win98. Unfortunately something went wrong. On startup...
  2. anulaibar

    Relative path, getimagesize() and implode()

    Hello! I have a problem with my imageuploadingscript. I'm trying to pass a relative path as argument to the getimagesize()-function, but I'm doing something wrong. The code looks like this: $uploaddir = "E:/www/web/bilder/"; $uploaddir_arr = explode("/",$uploaddir); $id =...
  3. anulaibar

    Setting SESSION var from GET var

    I have the following piece of code to get a value from the user which stylesheet to apply to the page. session_start(); if (isset($_GET['css'])){ $_SESSION['css'] = $_GET['css']; } if (!isset($_SESSION['css'])){ $_SESSION['css'] = "3"; } I then call the variable in the link tag...
  4. anulaibar

    Defining frames in CSS

    Hi! I want to design my frameset in CSS, so instead of writing <frameset frameborder=0 border=0 framespacing=0 noresize frame scrolling=no> I want to write something like frameset {frameborder: 0; border: 0; ...} And the same goes for frames. Does anyone know how to do this? Thanx, Olle
  5. anulaibar

    Empty string is not NOT NULL?

    I'm trying to create a login system for my homepage and don't want the users to be able to submit empty fields in the form. I want to get an mysql error if someone tries to do it. But it doesn't seem to work although I've set the attributes of the table to be NOT NULL. I get an mysql error if I...

Part and Inventory Search

Back
Top