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

    Can't INSERT immediately after CREATE TABLE

    I'm using embedded MySql statements in Perl to create a table and insert the first record. My code is: $sth = $dbh->prepare (" CREATE TABLE TEST ( `product` varchar(16) NOT NULL default '', `title` varchar(40) NOT NULL default 'No Title', `desc` longtext NOT NULL, `image` varchar(24)...
  2. poplarman

    How do I preload images?

    I've copied scripts down from other sites and incorporated them into my pages. The result seems to be - no difference!! Do preload scripts work - if so, what am I doing wrong? I have a number of rollover images on my index page and it would be of great advantage to have the underlying images...
  3. poplarman

    Is it possible to override the 50% selection rule?

    I'm performing a SELECT statement using MATCH AGAINST running against a table with few entries at this stage since I am building it by geograhical region. Whenever my query finds that more than 50% of the rows have been selected NONE are returned. Is there any way that I can override this rule...
  4. poplarman

    I'm stumped with this Forms Validation

    I hope this is the right place for this cos it's Perl, HTML and JavaScript! I have an initial HTML Form with the following: ------------------------------------------------- <form action=&quot;cgi-bin/Apply.pl&quot; name=&quot;ApplyForm&quot; method=&quot;POST&quot;> <input...
  5. poplarman

    Embedded mySQL - Does a table exist?

    I want to carry out table retrieval only if a table exists. Currently I'm carrying out the call unconditionally and it's not going on to the next bit of code. This is what I want to do but ONLY if the table exists :- use DBI; use CGI qw(:standard); local ($dbh, $sth); $dbh = DBI->connect...
  6. poplarman

    Running a Perl script on another domain ....

    From within a perl script I want to run a perl script on another domain for which I have upload and access rights and then, if possible, check the result and then continue with the original calling script. Is this possible please? Pop

Part and Inventory Search

Back
Top