Closed Thread
Results 1 to 3 of 3

Thread: onClick

  1. #1
    ezcat is offline Learning Programmer
    Join Date
    Nov 2008
    Posts
    39
    Rep Power
    0

    onClick

    I'm trying to use onClick to call a PHP script like I can with href.

    This line works:
    Code:
    Echo '<td width="100"><div align="center"><a href="olgnsr.php">Name Select</div></a></td>'
    I what to do something like this:
    Code:
    Echo '<td width="100"><div align="center"><FORM><INPUT TYPE="button" VALUE="Name Select" onClick="olgnsr.php"></FORM></div></td>'
    When I click on the button nothing happens. Is there anyway to get this button to run the olgnsr.php script?

    Thanks,
    Jon

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    ezcat is offline Learning Programmer
    Join Date
    Nov 2008
    Posts
    39
    Rep Power
    0

    Re: onClick

    I was able to get what I wanted with this:
    Code:
    Echo '<td width="100"><div align="center"><form name="form1" method="post" action="olgnsr.php"><input type="submit" name="submit" value="Name Select"></form></div></td>'
    If anyone has some advice, please let me have it :-)

    Thanks,
    Jon

  4. #3
    Join Date
    Jul 2006
    Posts
    16,486
    Blog Entries
    75
    Rep Power
    143

    Re: onClick

    onClick calls JavaScript. You can modify the contents of the page with JavaScript and use JavaScript to request information from a PHP page.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Preventing onclick() inheritance
    By RHochstenbach in forum JavaScript and CSS
    Replies: 0
    Last Post: 06-02-2011, 03:34 AM
  2. Copy href onClick
    By rsnider19 in forum JavaScript and CSS
    Replies: 1
    Last Post: 11-15-2010, 04:02 PM
  3. PHP Delete onClick
    By Alex_j in forum PHP Development
    Replies: 2
    Last Post: 03-13-2010, 01:32 PM
  4. prompt to to appear after onclick
    By freddyw2 in forum JavaScript and CSS
    Replies: 19
    Last Post: 11-21-2008, 10:54 AM
  5. Onclick change font for flash site?
    By zeroradius in forum Website Design
    Replies: 4
    Last Post: 04-25-2008, 08:44 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts