I built a basic Checkbox web page.  I want to add a time stamp everytime a check is made on the page.  How do I do that?

I built a basic "checkbox page" with a list of bus numbers next to a check box.  once the check is made, I want Dreamweaver to insert the time that it was pressed right next to the bus number.  How do I do this?
Any suggestions would be great.

> I want Dreamweaver to insert the time that it was pressed right next to the bus number
Sorry, Dreamweaver is just a development tool. You wouldn't have it insert the time. Your dynamic web page would do that.
The best way would be to use AJAX, but a simpler method would be to have the checkbox trigger an event to submit the form. Then update the database with the timestamp. However, either method have the problem in that if the wrong checkbox is accidentally checked the form gets submitted. I think it would be better to use a submit button.
Of course, all of this assumes you know Javascript and PHP or another scripting language and have a database setup.

Similar Messages

  • I downloaded a magazine as a web archive and want to know can I convert it to a PDF file and if so, how do I do that please

    I downloaded an magazine as a web archive and want to convert ii to a PDF file. Can I do this and if so, how ? Thank You

    Thank you Frederic, however when I click on "open with", 3 sidebars (?) open in this order ..Safari (default); Textedit; Other. If I click on "other", another window opens with "recommended applications" highlighted. Preview is not one of the chosen applications. However if I click on "all applications", Preview is then highlighted, but it only has an "open" window and I don't get an opportunity to File>Save as PDF.
    I hope this makes sense...ellietess

  • When I copy say something from a web page how then can I paste it and where to ie pages/messages etc on my ipad

    when I copy say something from a web page how then can I paste it and where to ie pages/messages etc on my ipad

    You can paste it into any word processing program you have, evernotes as stated, the notes app, even into e-mail if you want.

  • How can I have Safari save my opened web pages when I quit so that when I open next time they will be there?

    How can I have Safari save my opened web pages when I quit so that when I open next time they will be there? I can do that in Firefox automatically, but can't seem to find how to do it in Safari.  I'm thinking maybe it's just now possible yet?

    From your Safari menu bar click History / Reopen All Windows from Last Session.
    Or..
    Glims can  re open tabs from a previous session if that helps.
    http://www.machangout.com/
    Compatible with Snow Leopard v10.6 and Safari 5+ and it's free.

  • Small web pages: how to display right?

    Hi!
    When I go to some mobile-optimized web pages, like for example http://microsofttranslator.com/m/  the text appears super-tiny on the top-left corner of my phone, so every time I go there I have to make the "zoom" gesture with my fingers and then re-center the page.
    That really makes these sites less useful, since a big part of the appeal is to be able to *quickly* look something up on my phone.
    Is there something I can do so that it remembers the size, even if I quit and restart the web browser? The simplicity of these mobile-optimized pages is otherwise very appealing.

    Hello jpmartin and welcome to the forums;
    An easier way to zoom in would be for your example to tap one time in the box where you are going to type. This automatically zooms and centers on that text box, giving good access to the other options on the screen.
    The problem is the difference in mobile platforms and web browsers. The Pre's browser usually registers on websites as a standard browser, not a mobile one. If you try going to http://microsofttranslator.com/m/ from your desktop PC, you get the same exact page that appears on the Pre. Some sites are built to recognize the Pre and direct you to an optimized site that works extremely well (Google and gmail are great examples here), and some are not.
    Also, try the non-mobile version of the site, since it loads the same way as on a desktop PC, you may find that interface more user-friendly, or try one of the many other web-based translators.
    Hope this helps,
    TreoAide

  • How do I search for text on safari web pages, How do I search for text on safari web pages

    How so I do a text search on a safari web page?  Please help

    When you're on the page you want to search tap the URL bar to turn it blue. Tap the x so it disappears. Type the word you want to search for, at the bottom of the suggestions is find on page, tap that. Your high-lighted text should appear.

  • Back button doesn't appear after going to a new web page but works from after that

    The back button and refresh button don't work when I start browsing in a new tab or a new window. For example, if I open a webpage in a new tab (or start a new session, etc):
    Open browser and go to mozilla.com (first web page)
    Click on any link (second web page)
    Can't click on back or refresh buttons (Greyed out)
    Click on any link again (third web page)
    Can click on back button to second web page but still won't go back to first web page (as if history of ever visiting the first web page isn't there)
    Does anyone have a similar problem or know how to solve it?
    I have also noticed that Firefox hangs sometimes, like when clicking on forget/delete this from history and disable/remove add-ons
    Thanks.

    im not sure but maybe this helps. I was opening links with right mouse button at FF3.6 and second option was open in new tab but at FF4 this option at first order. If you use same way as like me. your new tabs are new windows so there is no back option or refresh.

  • When OS X Lion enlarges a web page how do I get it back to normal size?

    How do I get the web pages back to normal size when Lion expands them? I don't even know what I am doing with my magic mouse to expand the web pages.

    Barney-15E wrote:
    If you double-click with two fingers, the section of the web page you clicked on will expand to fill screen. Double-click again with two fingers to unzoom.
    That is how it works on a Trackpad; I assume it is the same on the Magic Mouse.
    On the Magic Mouse it is a one-finger double-tap.

  • Download a web page, how to ?

    Can any one help me with code for downloading a web page given the url address ? I can download the page, but the problem is it doesn't download the associated images, javascripts etc. neither does it create an associated folder as one might expect when saving a page using browser.
    Below is the code snippet -
                        URL url = new URL(address);
                        out = new BufferedOutputStream(
                             new FileOutputStream(localFileName));
                        conn = url.openConnection();
                        in = conn.getInputStream();
                        byte[] buffer = new byte[1024];
                        int numRead;
                        long numWritten = 0;
                        while ((numRead = in.read(buffer)) != -1) {
                             out.write(buffer, 0, numRead);
                             numWritten += numRead;
                        System.out.println(localFileName + "\t" + numWritten);

    javaflex wrote:
    I don't think web crawler would work
    webcrawler simply takes every link or url on the given address and digs into it ..
    Would it work for javascripts ? Given a url like xyz.com/a.html,
    1. the code above would downlod the plain html.
    2. parse html to find javascripts, images (anything else I need to look at ?)
    3. download those
    4. put everything in one folder (but the question is then do I need to rename the pointers in the dwnlded html to point at the other contents on the disk ? )
    This is naive approach - anything better ?
    thanks.More advanced web-crawlers parse the JavaScipt source files (or embedded JS sources inside HTML files) and (try) to execute the script in order to find new links. So the answer is: yes, some crawlers do. I know for a fact that Heritrix can do this quite well, but it is a rather "large" crawler and can take a while to get to work with. But it really is one of the best (if bot the best) open source Java web-crawlers around.

  • Google search disable the web page, how to get it back?

    When i do a Google search using the safari option up right, the web page turn grey but sont comme back available. I need to reboot the iPad.
    Any tricks?

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).
    You see the orange Firefox button when the menu bar is hidden
    *In current Firefox versions it is possible to hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu of a toolbar to make the (orange) Firefox button appear.
    *Tap the Alt key or press the F10 key to bring up the menu bar temporarily if you need to access a menu on it.
    *Go to "View > Toolbars" or right-click the menu bar or empty space on the tab bar to select which toolbars to show or hide (click on an entry to toggle the state).

  • Fresh install of Firefox not displaying any fonts in the menues or web pages how do I fix this?

    completely uninstalled priviouse version of Firefox and just intalled Firefox 13.0.1. it doesn't display any fonts not on web pages and not within the Firefox menu structure.

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers

  • Safari will not load any web pages. how do i fix it?

    safari on my macbook pro will not load any web pages. the loading bar will not go past http:// and no matter how long i leave it, it still will not load. please help me!

    How old is your MBP?
    Do you have APP?
    Does this happen all the time? Does it happen on a specific site? What internet connection do you have?

  • Firefox opens, however, it will not load any web page. My internet shows that it is connected.

    The internet connection is working fine, every other wireless device works in my house. Firefox loads, however, when typing in any web address, it blinks very briefly (you cannot see anything at all), then simply stays on the home page. No website wil load at all.

    Hi,
    Thank you for contacting support. The Web address bar should be showing the url. Please try to start the browser in safe mode or disable any add ons or extensions to see if they are affecting the bar.

  • I installed a game and when i start mozilla i am unable to start with the my home web page how can i fix

    i installed a game and when i start mozilla i am unable to start with the my home web page. i set my home page in options tools. when i open Mozilla it opens in another page that i do not want

    Some add-on or other software included with the "game" you installed might have "hijacked" your Firefox home page. I take it you tried resetting your home page? Ref: [[How to set the home page]]
    See this article for links to other possible solutions:
    *[[Fix problems with your home page or search]]

  • WiFi user start up web page/How do you create one with an AirPort Extreme?

    I have an AirPort Extreme Base Station, a 17" PowerBook and a 12" PowerBook.
    I also have a website with a dedicated server. How could I set-up my AirPort Extreme to send people to a specific web page each time they access my WiFi?
    I have seen this work at various businesses that offer WiFi and I would like to do something kind of similar. I don't mind people using my WiFi. But, this could be a way to get more free advertising for what I do.
    Jeff Purtle
    www.purtle.com

    You would need a server between the Airport base station and the internet.
    Something like this
    http://www.wifi.com.ar/english/hotspot.html
    iFelix

Maybe you are looking for

  • From address in Mail

    Using Mail in Mavericks.  I have a complicated spelling to my last name and to make life easier for recipients of my email, I use a simpler spelling of my name on the <From> in email. I use Mail, iMap accounts on an iMac and a MacBook Pro. Emails sen

  • Elements 5 and 7 confusion

    I installed photoshop 7 as directed - but I did not unistall 5 1st. now when I got to import photos I have to choose between 5 and 7.  I went to unistall 5 and it told me to close 7 before I could proceed. Will unistalling 5 cause problems with 7? is

  • Google search results page is not showing the full (green) http link

    google search results page is not showing the full (green) http link

  • OS update problem.

    I updated my os to the latest version for my iPad 2, and now it's as slow as can be. Can I either speed it up or reinstall the older os?

  • FinalCut Express 3.5 HD, importing H264

    I have some video footage that I was given and would like to edit in FCE. The video is in H264 MPEG format. When I try and import this into FCE, I get an error message saying that the format is not known. File Error: 1 file recognized, 0 access denie