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 TouchToneTommy 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. LTeeple

    Split output into 2 pages

    Hi, look up CSS 'page-break-before' or 'page-break-after'. This may achieve what you're looking for. [cheers] ~L.
  2. LTeeple

    link to exe on intranet

    Good heavens, I hope not! While your intentions may be innocent, think of all the viruses that could propagate this way... [cheers] ~L.
  3. LTeeple

    MSN Website: CSS Issue

    I occasionally get that error as well on MSN sites. I never change my browser settings, and the problem is usually resolved by my clicking refresh. [cheers] ~L.
  4. LTeeple

    Onload to refresh page

    function doLoad() { location.reload(); } <body onLoad="doLoad();"> Wouldn't that be an endless loop? Everytime the page loads it reloads? [cheers] ~L.
  5. LTeeple

    Unable to jump to row on MySQL result index

    I'm pretty sure this is a PHP problem... (forum434) Look at the mysql_result function in particular. [cheers] ~L.
  6. LTeeple

    Popup Function, passing url, width and heigth

    A Google of the terms 'javascript popup' yielded a plethora of results. Give it a try! [cheers] ~L.
  7. LTeeple

    forms that refresh after option select

    I suggest a client-side scripting language like Javascript. If the question is strictly yes/no, I recommend using radio buttons, and using the onClick event. [cheers] ~L.
  8. LTeeple

    Words that are their own antonym

    Good thread idea! consult: get or ask advice from, to advise professionally transparent: invisible, obvious [cheers] ~L.
  9. LTeeple

    Prevent the use of BACK and FORWARD button

    ... Yes that is possible - Here's a page that comprehensively explains what you want to do: http://www.javascripter.net/faq/openinga.htm Enjoy! [cheers] Cheers! Laura
  10. LTeeple

    I think this is a basic question.

    That depends on what scripting language you would use. Most use either ASP or PHP. Post that question in one of those forums, and you'll get a response. [cheers] Cheers! Laura
  11. LTeeple

    A little off topic -- tipping

    I can't imagine tipping on someone making me a $5.00 smoothie - that's outrageous! If I was seated and he/she brought came to me, wiped off my table, took my order, made my smoothie, and then cleaned my dishes away, I'd tip for sure, but for counter service? I don't think so. [cheers] Cheers...
  12. LTeeple

    Newbie question: how to debug JS

    Use FireFox - it has a built-in Javascript Console - which has more meaningful error messages. [cheers] Cheers! Laura
  13. LTeeple

    Alt tags

    DWMX has a built-in validator, but you have to run it to find the problems. If you use DWMX, at the bottom of thedesign/code window, expand the "Results" pane (immediately below "Properties"). Once expanded, you will see several tabs. One of those tabs is labelled "Validation". Click on it...
  14. LTeeple

    UPDATE Problem should be easy

    UPDATE users SET id_county = '1', WHERE user_id = '434'failure" Eliminate the comma between the '1' and WHERE: "UPDATE users SET id_county = '1' WHERE user_id = '434'failure" [cheers] Cheers! Laura
  15. LTeeple

    UPDATE Problem should be easy

    You should also try some more descriptive error messages such as: $j = $_SESSION['county']; echo "county = $j"; $a = $_SESSION['user_id']; echo "user_id = $a"; $query_two = "UPDATE users SET id_county = '$j', WHERE user_id = '$a'"; $result_two = mysql_query ($query_two)...
  16. LTeeple

    doing a mysql query with AND connector

    Just for fun, try this: $fetchid = @mysql_query("select * from tomapping where TOID='$toid' AND HotelName='".$hotelname."' "); [cheers] Cheers! Laura
  17. LTeeple

    Contradictory

    I like that! [rofl] [cheers] Cheers! Laura
  18. LTeeple

    what is this error meaning? works on laptop, won't work on server!

    If it works on one machine and not on the server, perhaps your server may be not configured the same? Specifically the PERL installation I'm thinking... [cheers] Cheers! Laura
  19. LTeeple

    when I submit my form values not passed

    Hi, You're accessing the variables wrong: Try this: (assuming all variables referenced are coming from form on previous page) form_mail.php: <HTML> <TITLE> test </TITLE> <body> <?php $email_to = "user@test.com"; $subject = "* test subject *"; $message = "* test message *\n\n Status: "...
  20. LTeeple

    Contradictory

    I would say there is a definite possibility of a labelling error there. [cheers] Cheers! Laura

Part and Inventory Search

Back
Top