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 strongm 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: iluvperl
  • Content: Threads
  • Order by date
  1. iluvperl

    very quick and easy question!

    I usually use PSP to resize images because it's a million times faster (less menus, resize prompts remember last used information, etc) but it timed out. Now I'm using PS CS2. My question is, is it possible for me to set an option where when I resize an image it'll keep the last used settings...
  2. iluvperl

    trying to JOIN 2 tables together on SELECT

    I need help from someone who's familiar with MySQL (and hopefully Perl), more specifically JOIN statements where I can SELECT from two separate tables completely inside one statement. I have 2 tables (engines, special_fields) and the fields that are identical between them are engines.name and...
  3. iluvperl

    my first attempt at Perl mysql JOIN query

    I need help from someone who's familiar with Perl AND MySQL, more specifically JOIN statements where I can SELECT from two separate tables completely inside one statement. I have 2 tables (engines, special_fields) and the fields that are identical between them are engines.name and...
  4. iluvperl

    basic row count question

    I need to know how many rows are returned that satisfy my query. my $data = qq(SELECT search, engine, time FROM searches WHERE UNIX_TIMESTAMP(DATE_SUB(CURDATE(),INTERVAL 7 DAY)) <= UNIX_TIMESTAMP(time)); I need to know how many rows will be the result of this. The thing is, I am doing...
  5. iluvperl

    another perl mysql question with sth-&gt;fetch

    my $dbh = DBI->connect("DBI:mysql:$dbase", $mysql_user, $mysql_pass) or print DBI->errstr; my $data = qq(SELECT search, engine, time FROM searches WHERE DATE_SUB(CURDATE(),INTERVAL 7 DAY) <= time); my $sth = $dbh->prepare($data); $sth->execute() or die $dbh->errstr; my ($search, $engine...
  6. iluvperl

    perl mysql problem with NOW()

    use DBI; my $dbh = DBI->connect("DBI:mysql:$dbase", $mysql_user, $mysql_pass) o +r print DBI->errstr; my $data = qq(INSERT INTO searches (search, engine, time) values(?,? +,?)); my $sth = $dbh->prepare($data); $sth->execute("$search", "$engine", NOW()); It says NOW() is an undefined...
  7. iluvperl

    how to match text with google ads?

    Anyone familiar with matching their text and links with google ads? http://www.spyderscripts.com/ads/ads.html The top one is the ad, the rest are my links and text I want to match identically. I can't put my finger on it but the fonts or the sizes between their ads and my text aren't...
  8. iluvperl

    picture loads for ME but not the site owner

    Hi everyone. Posting this for a friend of mine (it's her site). http://www.sudsandwicks.com/newsite/SAWtemplatetables.html There should be three tables in the main section and each of the three should have an image inside them. I see all 3 images, a friend of ours sees all 3 images (in both...
  9. iluvperl

    javascript link to open window without toolbars

    I'm sure you get asked this a lot but I need a JS link code that will open a page without toolbars, scrollbars on auto (if possible) and where I can preset the height and width of the window. Is it also possible to pass a TITLE param onto a window? Or is that not possible at all?
  10. iluvperl

    Another alignment problem

    Can someone go to http://www.spyderscripts.com/scripts/10.shtml and look at the 2 demo and download buttons on the bottom? I need the two buttons side by side and I can't figure out what's wrong. I always have problems with PayPal buttons like this.
  11. iluvperl

    how to set cellpadding

    Working on the 5th version of my new template (still having problems getting it to work). The designer I hired set it up so I can't add the needed cellpadding. You can look http://www.spyderscripts.com/newtemplate/3/ The content section, as you can see, is on the side of the bar to it's left...
  12. iluvperl

    is it possible to have more than one CSS file?

    Can a page use more than 1 CSS file simultaneuously? I have a little Perl script I wrote that works as an include as opposed to loading the script directly. I was wondering if it would work to have one CSS for my web site and call a different CSS from within my script. Would that work? Or...
  13. iluvperl

    alignment problem

    http://www.spyderscripts.com/news.shtml On the left side of the screen is a chatterbox. As you can see, it sort of centers itself vertically on the left side depending on how large the page is in height. I need it to align itself to the top, no matter what size it is. I've tried adding td...
  14. iluvperl

    w3c validation

    Hi guys. Not too savvy with web design (programmer though) and created one with Photoshop CS2/Image Ready. Second template ever and it's pretty simple. It only came up with 6 errors on the W3C validation. Can someone help me sort these out? I want to be totally compliant. My URL is...
  15. iluvperl

    Computer keep shutting down

    I have a laptop that has recently begun shutting down CONSTANTLY. Any time I hear the processor working hard for a few minutes it will shut down and I won't be able to reboot it successfully for about 5-10 minutes. My first guess was it was overheating because the casing was getting warm, so I...
  16. iluvperl

    How to stream live audio

    Hope this is the right palce to ask. A client came up to me asking me to make him an online radio station type of thing (I'm just their programmer, I don't have any experience with designing or things of this nature). What does one need to do to stream LIVE audio? Not saved MP3s or anything...
  17. iluvperl

    No repeat background

    Can someone give me the inline code to make a background image in a TD cell not repeat? I found lots of examples in CSS but not a complete one that showed me how to use it in a table. The examples where just for BODY tags. I need it for a <td> tag
  18. iluvperl

    Newbie question on proxies

    I am a programmer, not a techie, so bare with me if this seems like a a n00b question. I built a site scraper that collects 6000+ proxies live once a day from 3 proxy web sites. I then use the proxies to test my server with a second script I wrote using Perl. The problem is, most proxies I...
  19. iluvperl

    How to open corrupt file

    On Windows XP and I have a digital camera that takes ASF video files. One of the 4 files is corrupt and won't let me open it. It loads on the camera playback but windows says it's corrupt. Any ideas on what to do to transfer it to the computer, corrupt or not? I tried running chkdsk on it but...
  20. iluvperl

    Making a simple java into something run by browser

    New to Java..well.. yesterday. Quick question. How do I get a simple Hello World script.class/script.java to be executed in the browser? I want to play around with it outside of the CMD/DOS console.

Part and Inventory Search

Back
Top