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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by clownkevin

  1. clownkevin

    Displaying SQL rows 5 at a time

    I have a search page which retrieves data from sql. This is written to the page as follows: for ($i=0; $i<= $num-1; $i++) { $row = mysql_fetch_object($r); print &quot;<h3>$row->name</h3>&quot;. &quot;<p>$row->town<br>&quot...
  2. clownkevin

    changing background image in a table

    Perfect! It works perfectly, brain now shrinking back to normal size, thank you!!
  3. clownkevin

    changing background image in a table

    Is it possible to change the background image in a table?
  4. clownkevin

    Multiple javascripts using onLoad command

    how about function loadStuff(){ moveImg() makesnake() } in the <head>, then <body onload=&quot;loadStuff()&quot;>
  5. clownkevin

    passing data to pop up windows

    the alert gives me - imgOn - so something is being passed, but imgOn is supposed to be a variable that picks up the url of the image from the body of the document in the first bit of the function, i.e. &quot;images/slideshow/picx.jpg&quot;. Still therefore puzzled, also confused at not being...
  6. clownkevin

    passing data to pop up windows

    I wonder if anyone can help? I am trying to open a popup window and pass an image to it dynamically, setting it as the background to the page (to avoid the border) I need to reuse the window for each subsequent picture, and pass the focus back to the popup so it will be visible when a new image...
  7. clownkevin

    CGI Scripting

    Certainly formmail is great if you have cgi-bin and remember to set the permissions However I am puzzled why you think the mailto link doesn't work? It is perfect for me on several forms I have up, e.g. http://homepages.tesconet/~pruespost/book.htm The good thing about it is that it works with...
  8. clownkevin

    CGI Scripting

    No, it's quite neat in response actually, it's disadvantage is that it uses the clients email progam instead of doing it all server side, ie the user may have to send email before you get it
  9. clownkevin

    CGI Scripting

    Well strictly speaking you don't need a script. You can send a form using the client's email program thus: <form action=&quot;mailto:your emailaddress&quot; method=POST enctype=&quot;text/plain&quot;> Then continue with your inputs, etc
  10. clownkevin

    redirect on completion of form

    Perhaps we are getting to the point here... I only have a standard web page, no css or asp available. Can this only be done with gimmicks on the web server?
  11. clownkevin

    redirect on completion of form

    How do I go to a new page when the form is submitted. I have seen the hidden action 'redirect' but it does not seem to work for me. Does it need CGI on the server or something??

Part and Inventory Search

Back
Top