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 derfloh 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. Palmke

    Installer + Php encrypt

    hi all, maybe I'm OT !! sorry if so!! First question : I need to make an installer in which I'll have to include free apache webserver and the php web application, so that people who wanna try it out locally, could just install it without any particular knowledge, anybody know a free program...
  2. Palmke

    Create MySql DB from file .sql

    hey guys, i have php running on phpmyadmin, I made a database in mysql and I exported it in a .sql file. this is what's happening now : whenever I run the php files which access the db in mysql, on a machine server (phpmyadmin) for the first time, unless I manually create the db or browse...
  3. Palmke

    Modifiyng & Saving Excel File (from a form)

    hi all, my excel source file is full of formulas and I can't find a way to keep them in the new file I create (even just to merely copy it!). Please help! ;) Palmke
  4. Palmke

    Modifiyng & Saving Excel File (from a form)

    hi all, I have a php form and I want to save these data automatically in an excel file; I found information on the net about how to : read info from and excel file, create an excel file but I need to : 1) copy data from the php-form-fields in some fields in a pre-existing excel file, 2)...
  5. Palmke

    Form and browser

    I have a program in PHP and Javascript script inside, I dont know where to put that line, I put in my php program or in Javascript, without errors but both dont work. Best regards, Palmke
  6. Palmke

    Form and browser

    yeah,my bad but they dont help anyway :(( May I ask something? It seems that you know this language very well, where do you find good information? I mean would you suggest me a good site or a good manual please? Best regards, Palmke
  7. Palmke

    Form and browser

    to Adam : thanks for your reply, if I put that in the code it gives me Syntax error. Palmke
  8. Palmke

    Form and browser

    I'll try to do my best, I have made a form in php with some fields, then whenever you change some of those fields, event handlers call a function that I wrote in JavaSscript that calculates some datas and then at the end of the function there is ...
  9. Palmke

    Forms

    It works.. anyway thanks for the replies ;-)
  10. Palmke

    Form and browser

    Hi all, I have made a form in php and I use Javascript and event handlers to write on some fields of the form when an event occurs, everything works fine but I have a problem now : let's say the first form I use some buttons and so some events occur and it update the fields of the form with ...
  11. Palmke

    Event handler on a counter button

    hi, I have an event handler which I can't modify and then I can call a function whenever a button is changed : I used either onclick=do_it(a) either onchange=do_it(a) I didn't find on the manual of JavaScript an event handler that reacts when u push the "buttons" of a counter.. don't...
  12. Palmke

    Forms

    here's the function : function save_state(id){ state=a-b; document.forms['myform']['field'+id].value=state; } myform structure is : one field called 'user_num' has the number of the form being compiled that it's different for every row, other fields are gonna be filled by save_state function.
  13. Palmke

    Forms

    I have made a function that saves something when certain actions are performed on objects in a form, in the same form there's another column which I may call it "user number" that it is not autoincrement but it's the key field and every row has a different number in it. Now, by calling the...
  14. Palmke

    Event handler on a counter button

    I have to use event handlers for some kind of buttons, and till now everything is fine, I also have to make it react when you click on "+" or "-" buttons of a counter.. i tried onclick and onchange but both of them reacts only when the text in it is clicked one, and the other after you move the...
  15. Palmke

    Varable name & form

    Real thanks! it worked :-) Now I have two more problems : 1) I have to use the function that I wrote to save something under the column called "field" in that form, in the same form there's another column which I may call it "user number" that it is not autoincrement but it's the key field and...
  16. Palmke

    Varable name & form

    Hi all, I made a function like this : function save_state(id,field) {... //I do some stuff and then this line myform.field.value=1; ...} if I make it run, the system doesn't save anything in value of field, I looked everywhere how to write field since is a variable, when you usually use...

Part and Inventory Search

Back
Top