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: *

  1. xWastedMindx

    <div> ... position problem

    You're trying to push the dislaimer (Footer) to the bottom? use this code: <div id='disclaimer' style='position:absolute; margin-top:#px; width:98%; left: 1%; visibility: visible'> disclaimer (bottom of the page) </div> Or another option even, is on the DIV directly above the disclaimer...
  2. xWastedMindx

    CSS print vs screen stylesheets

    If you have 2 stylesheets loaded into the same page, with the same properties, the "second" stylesheet will be the one to take precedence over the other. So, as per your question, "print.css" will be the one the browser chooses, because it is coded after "test.css" &quot;Hey...Where are all...
  3. xWastedMindx

    Adding Background Music to Website

    For Netscape you'll want to do this. <embed src=&quot;yourmusicfile.mid&quot; autostart=&quot;true&quot; loop=&quot;true&quot; width=&quot;2&quot; height=&quot;0&quot;> </embed> For Opera, and IE, do this <bgsound src=&quot;yourmusicfile.mid&quot; loop=&quot;infinite&quot;>...
  4. xWastedMindx

    Compaq Hard Drive Rail Hardware

    That's why you don't purchase computers from the vendors. Learn a bit.. read a magazine.. and build one yourself. :D &quot;Hey...Where are all the chicks?&quot; -- unknown
  5. xWastedMindx

    No video or Post Beeps on Startup

    I had a similar problem one time before.. the computer turning itself off/no beeps, etc. It ended up being that the mobo was not seated properly causing it to short out. The cause was my steel case... didn't like my new motherboard purchase, since the mounting holes didn't align perfectly, I...
  6. xWastedMindx

    PHP QUESTION TO UPLOAD JPEGS TO SERVER

    I've seen a load of questions around uploading images lately. Does someonw have as assesment due in ?? Not me.. I'm not even in school. Plus I graduated already from both High School, and College. Maybe it's just a coincidence that everyone is asking similar questions around the same time...
  7. xWastedMindx

    Query question

    Hello again. I've seen this asked before.. but it was never clearly answered. When pulling multiple tables (2 of them), and a bunch of information out of each through a query... Is there a way to just use the Auto-Incrementing &quot;ID&quot; to grab all the info, instead of appending each and...
  8. xWastedMindx

    query using two tables

    Yes.. I have just the file path stored in the DB.. the actual images are on disk. And I got it to work! :-) I'm happy! Thanks you all! This is my final code... very similar to what Spookie gave an the example. <img src='<?php echo(&quot;./image_upload_files/img/$img_file&quot;) ?>'...
  9. xWastedMindx

    how do I get text to blink in IE

    It doesn't work in IE. It's a Netscape only property. And why do you want to use it anyway? It's so annoying. I'd stay away from it if I were you.... -Ken &quot;Hey...Where are all the chicks?&quot; -- unknown
  10. xWastedMindx

    PHP QUESTION TO UPLOAD JPEGS TO SERVER

    Yes it is possible. Where to look? GOOGLE is your best friend. Google this: upload with php &quot;Hey...Where are all the chicks?&quot; -- unknown
  11. xWastedMindx

    query using two tables

    Well I got most of it working. Now just for the part of actually displaying the images from Table2 along-side the other information pulled from the Table1... How would I go about doing this? This is what I have so far.. but I know it's wrong. $img = '<img src=&quot;spread.php('.$img_file.')...
  12. xWastedMindx

    query using two tables

    Alright, I have 2 tables. One with my dvdID, dvdName, and dvdPrice. The other table holds my dvdPicture information. (picture path to the disc, alt tag, img width, height, description, etc.) I have an HTML table with just basic info first. DVD Name and the ID number. When a link is clicked for...
  13. xWastedMindx

    Newbie with a silly question.

    PHP Nuke is a &quot;portal&quot; style application for you to build as a Website. It's set up to look like Slashdot.org - if you've ever been there or not.. who knows. PHP is a server-side scripting language. &quot;Hey...Where are all the chicks?&quot; -- unknown
  14. xWastedMindx

    imagecreatefromjpeg not working?

    Seems I figured out an easier way to install it. At least the GD part anyway. in the Konsole.. just typed urpmi php-gd It asked for CD-2 and installed it for me. Now it shows up in the phpinfo() and I have JPG support :) Thanks for the help! &quot;Hey...Where are all the chicks?&quot; -- unknown
  15. xWastedMindx

    imagecreatefromjpeg not working?

    It appears I don't. I don't have a GD section in my phpinfo(). Definately strange.. because I downloaded it from ADVX.org..and you think they'd at least have JPG/GD support. But it seems they don't have any newer updates for PHP yet... If I were to recompile to the new version and add support...
  16. xWastedMindx

    imagecreatefromjpeg not working?

    I got a problem. I have a script I'm working with ... following a tutorial found on DevArticles.com. The tutorial can be found here: http://www.devarticles.com/c/a/PHP/Storage_and_Reuse_of_Images_Using_PHP_GD_Part_1/1/ Anyway, it seems that the upload script works fine.. except for the JPG...
  17. xWastedMindx

    website doesn't work - but only for some

    Works fine for me. But I'd agree with philote on this one. It's either a problem with your DNS.. or maybe even the server itself, wherever the files are being hosted. &quot;Hey...Where are all the chicks?&quot; -- unknown
  18. xWastedMindx

    Frames

    Instead of using ID, use NAME. So it'd be: <frame src=&quot;menu.htm&quot; name=&quot;top&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; /> <frame src=&quot;home.htm&quot; name=&quot;main&quot; frameborder=&quot;0&quot; scrolling=&quot;yes&quot; /> Also.. yes I also agree that the...
  19. xWastedMindx

    Problem getting an Image from web and storing it in mysql

    I'm not exactly sure how to go about doing this, but if you have access to phpBB, I know that it does the same thing you're talking about. You could download their program.. and search through and find the file(s) which are required and implement their code. Although then you'd have to give...
  20. xWastedMindx

    Reverse Cmd Button

    I did forget to add.. this method is not Full Proof though. If the end user has JavaScript turned off, it will not work. So then what you could do is just create a regular HREF link pointing back to the original page. <a href=&quot;yoursite.com/index.html&quot;>go back</a>...

Part and Inventory Search

Back
Top