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 Wanet Telecoms Ltd 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: madcgimonk
  • Order by date
  1. madcgimonk

    CSS code tables

    Anyway, I did manage to get it about perfect now. I think I'll fiddle to get the font right but it looks good enough :) The code I used was .code_box { width:80%; margin:0px auto; border-width : 2px; border-style : inset; } .code_box_header { color:#FFFFFF; background-color:#666666...
  2. madcgimonk

    CSS code tables

    LOL. Well that certainly did help a bit :) It looks a lot better now than it did although I don't get the super cool side borders like the version here does. I made the opinion a long time ago that I hated CSS with a passion. lol. I think I might just have to stick with that thought! Thanks...
  3. madcgimonk

    CSS code tables

    Hi Chris. Thanks for your help. I must be a total idiot though because I can't get that code to work. I am trying to get this code working on my list of tutorials. The page I'm testing on first is: http://www.sulfericacid.com/tutorials/tut03.shtml . You can see where it says "code...
  4. madcgimonk

    CSS code tables

    I am horribly new at CSS and was wondering if someone could give me the CSS and HTML needed to make the CODE table. Ie. I want this box I read the source code and loaded the CSS style sheets for this site, but that wasn't very useful. lol. I just need the HTML and the CSS code to make it...
  5. madcgimonk

    Using SSI's globally

    Here is more information: The error was unable to include file "/home/sulferic/public_html/cgi/footer.shtml" in parsed file /home/sulferic/public_html/cgi/tutorials/index.shtml using <!--#include virtual="/home/sulferic/public_html/cgi/header.shtml"--> The file header.shtml does exist in...
  6. madcgimonk

    Using SSI's globally

    Hi. I tried that and it's not working at all. I checked my file paths to ensure they are accurate without a doubt, and it is. Any other ideas? Thanks.
  7. madcgimonk

    Using SSI's globally

    I have a chat script on the left side of all of my pages (or I am trying to get it that way, anyway) by using SSI. <!--#include file="chat.cgi"--> Works if I am in the main directory (yes, CGI's can be run outside of my cgi-bin). But when I am in a folder, like domain.com/folder1/ , the SSI...
  8. madcgimonk

    MySQL select rows problem

    LOL. see, even that is above and beyond me. I have no MySQL background and I've been stuck trying to fix this old site that uses MySQL for the past three weeks and almost. Thanks for your help!
  9. madcgimonk

    MySQL select rows problem

    No, it was on perlmonks.org and I asked the person who said that enough questions to drive someone nuts for a while, I'd hate to ask him for even more help.
  10. madcgimonk

    Writing an upload script without the CGI.pm library.

    Yes, I don't believe cgi.pm is a package you can install yourself because of all the dependencies on other modules. I'd ask them to install it if it's not already there or upload a test script to ensure cgi.pm isn't already installed.
  11. madcgimonk

    MySQL select rows problem

    I have a problem with the snippet below resulting in the error " fetch() without execute() at login.cgi line 69. ". I posted this on another forum and their response was: "At first glance the logic seems OK to me. I do have some trouble with the $sth->rows To get the number of records...
  12. madcgimonk

    Printing a message every X seconds

    While my perl script is running, I need it to print a message every X seconds (for now, we'll say 15 seconds). I need this because the script can take around 10 minutes to run and the only time output is sent is at the END and I need them to know the script is still running. Someone said ALRM...
  13. madcgimonk

    Best module for finding files

    I looked through the examples and it didn't have an example on how to do what I wanted or even hint "This is how you can search all files on your computer".
  14. madcgimonk

    Best module for finding files

    In short, I am trying to scan every file on the computer the script is running on. I looked into File::Find but it doesn't look like it's the best solution. Anyone know of a module that comes with Perl that's good for this type of thing or another good one on cpan?
  15. madcgimonk

    new to .net and VB simple question

    I'm thinking this isn't a very friendly language. I've been programming in other languages before and there shouldn't be more than one way to print. Thanks for your help. Now I have to decide if I still want to go VB or try Delphi instead.
  16. madcgimonk

    new to .net and VB simple question

    So how would I print it correctly then? Thanks.
  17. madcgimonk

    new to .net and VB simple question

    This is my first ever VB program and it's in .net. I have a textbox called box1 and a single submit button. I want to store the data from the textbox in a variable and then print it to screen. What did I do wrong? Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As...
  18. madcgimonk

    very small upload script problem

    Hi. I didn't have enctype before and I added that. But it's still uploading 0k files. This is what I have <form action="" method="post" enctype="multipart/form-data"> Thanks.
  19. madcgimonk

    very small upload script problem

    The upload script does upload the file, but it's alwaos 0k in size. For some reason it's uploading the file name but not the file. You notice that when you're uploading via the form, it takes a fraction of a second for it to say the file was uploaded.. so it's not even trying to upload data...
  20. madcgimonk

    &lt;STDIN&gt; not working

    You should be assigning variables to form param()s. my $username = param("username"); my $password = param("pass");

Part and Inventory Search

Back
Top