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 SkipVought 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. yenping

    problem with image switch

    i think u should give a name to ur image's object...
  2. yenping

    Help Needed to install Apache 2.0.54 on WinXP

    try this http://www.tipsntutorials.com/tutorials/PHP/71 try using older version of apache...such as version 1.3.33, it works fine with php 4.4.0 hope this will help you.
  3. yenping

    Help!! Attempting to install Apache

    i am using window XP platform too, and tried to install Apache2 on it, it's work but the php i installed on it didn't work. Finally, i got it work with installing older version of Apache and PHP version 4.4.0. try visit this site: http://www.tipsntutorials.com/tutorials/PHP/71 coz this site...
  4. yenping

    How to install Apache

    try this:- http://www.tipsntutorials.com/tutorials/PHP/71 it's work for me...
  5. yenping

    on submit form - Session is undefined

    u r rite, i didn't assign anything yet to the session... i think i have not enough experience in using session variables, i will try get in depth to it. anyway thank for the valuable comments. Thanks!
  6. yenping

    Forcing properties to be passed by referece?

    I agree with tsuji, it needs the object to be passed to the function parameter but not the object's property. dive_error is an object. dive_error.style.visibility refers to its property.
  7. yenping

    Forcing properties to be passed by referece?

    I agree with tsuji, it needs the object to be passed to the function parameter but not the object's property. [COLOR=blue]dive_error[/blue] is an object. [COLOR=blue]dive_error.style.visibility[/blue] refers to its property.
  8. yenping

    on submit form - Session is undefined

    what i mean is that the error shows that the session variable is undefined, if a page(for example:page1.php) was submitted to itseft.(page1.php submitted to page1.php, the value of the session variable becomes nothing)
  9. yenping

    disabled fields

    you cannot get the $_POST archive from the disable field, but you can create a hidden field and assign the disabled's text value to the hidden field, then you'll get the $_POST[some hidden field name here].
  10. yenping

    on submit form - Session is undefined

    <?php session_start(); header("Cache-control:private"); ?> <?php include("conn.php"); ?> <html> <head> <title>PRINSIPTEK</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="css/style1.css" rel="stylesheet" type="text/css"> <style type="text/css"> <!--...
  11. yenping

    on submit form - Session is undefined

    I have made a session variable from page1.php, when it goes to page2.php (for example), it shows the value. in page2.php, there is a form, submit back to page2.php to display information from tables but it shows error that the session variable is undefined. how can this happen? In case 1, it...
  12. yenping

    How do I stop a form being submitted twice ?

    try this link, hope it'll help you: http://www.tipsntutorials.com/tips/Javascript/49
  13. yenping

    Prevent multiple client inserts

    oops...u r rite bout it, i didn't realise that..hehe...
  14. yenping

    Prevent multiple client inserts

    i've forgot this one: change SELECT count(*) FROM submissions... to SELECT * FROM submissions... hope this help... yenping
  15. yenping

    Prevent multiple client inserts

    $query = mysql_query("SELECT count(*) FROM submissions WHERE NameInsured = '" . $NameInsured . "')"; # bcareful of the quotes try this $result=mysql_query($query,$db); if (mysql_num_rows($result) == 0) { $query= "INSERT INTO submissions (SubmissionID, NameInsured, Fein, EffectiveDate...
  16. yenping

    how can i remove the header and footer?

    hi! i am trying to use window.print() to print a page, it's work. however, it show the window title and page number on the top, file location and date at the bottom of the printed out paper. How can i remove both top and bottom extra things? or this has no solution? thanks, yenping
  17. yenping

    Calendar Loop Beginner

    hi, can you show the js script you have that make the loops. Normally, the outer loop produces rows, and the inner loop makes the columns... (outer loop) for(i=0;i<inum;i++){ ......(some codes that go row by row) (inner loop) for(j=0;j<jnum;++j){ .....(some codes that...

Part and Inventory Search

Back
Top