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 SkipVought 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
  • Order by date
  1. anulaibar

    Invalid system disc

    I messed up before - the power supply cord for the drive was loose, the cable from the mother board was twisted and the boot disc was no good either, but now I'm starting to get things working. I made a new boot disc from my winXP machine and it was accepted, so now I can at least get to DOS...
  2. anulaibar

    Invalid system disc

    I removed the battery on the mother board and shorted it for a minute, then put it back and started the computer. Now I get the message "drive not ready, insert boot diskette in a:". I made a win98 boot diskette from a site(http://www.drd.dyndns.org/fr_index.html?/disks.html), but it...
  3. anulaibar

    Invalid system disc

    I'm not so experienced with the interior of computers, but I'll try removing the battery for a while. The bios is AMIBIOS and I tried both boot sequences(a:, c:/c:, a:), but the error remains. Thanks for the help so far, I'll be back in a bit. Olle
  4. 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...
  5. anulaibar

    Relative path, getimagesize() and implode()

    What's funny is that if I do this $rel_url = "bilder/1069090593.jpg"; $bilddata = getimagesize($rel_url); I get no error and the height and width of the image are available in the $bilddata-array....
  6. anulaibar

    Relative path, getimagesize() and implode()

    I think that semicolon was added when I submitted my code, it's not in my file. I know the code is a bit messy, and I don't have any particular reason for using implode() :) The errormessage I get when running my script is Warning: getimagesize(bilder/1069090593.jpg): failed to open stream: No...
  7. anulaibar

    Relative path, getimagesize() and implode()

    Sorry for not submiting all of my code, but here it is... <?php if (isset($_POST['submit'])) { $my_url = &quot;http://&quot;.$_SERVER['HTTP_HOST'].&quot;&quot;.$_SERVER['PHP_SELF'].&quot;&quot;; $my_url_arr = explode(&quot;/&quot;,$my_url); $uploaddir = &quot;E:/www/web/bilder/&quot...
  8. 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 = &quot;E:/www/web/bilder/&quot;; $uploaddir_arr = explode(&quot;/&quot;,$uploaddir); $id =...
  9. anulaibar

    Setting SESSION var from GET var

    Yes, thanks a lot for your help sleipnir214 Olle
  10. anulaibar

    Setting SESSION var from GET var

    Thanks guys for replying, A friend suggested that the session vars are set correctly, but that the temp directory on the server is full, so that no new files can be stored. That would explain why the script suddenly stopped working, but it doesn't solve my problem. I'm not sure about how...
  11. anulaibar

    Setting SESSION var from GET var

    The piece of code above is in a file called start.php which I include in every page. Att http://medieteknik.nu you can see what I mean. From the indexpage I send the get variable, and on the next page, in the right nav bar, you can choose your stylesheet. It used to work before, I don't know...
  12. 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'] = &quot;3&quot;; } I then call the variable in the link tag...
  13. anulaibar

    Illustrator 10 Freeze while &quot;Reading Fonts...&quot;

    I spent all day with this problem, uninstalling, reinstalling and restarting when I should've gone to tek-tips right away! Thanks guys!
  14. anulaibar

    Defining frames in CSS

    You're probably right. I've asked around in other forums, and it seems CSS doesn't have a frame attribute. Thanx anyway!
  15. 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
  16. anulaibar

    Empty string is not NOT NULL?

    Thank you KarveR for your response!
  17. 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