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: *

  • Users: rbauerle
  • Content: Threads
  • Order by date
  1. rbauerle

    downloading file problem

    I need a way to allow my users to download a file wich is not compressed with one only click. For example: I have a link to the file 'test.doc'. I don't want it to be opened when clicked, I want it to be downloaded. any suggestions? Thanks, Renata
  2. rbauerle

    list files from a directory

    i need to list the files in a certain directory. i haven't been succesfull finding a way to do so. any idea of how to do it? thanks in advance. Renata
  3. rbauerle

    Relational Model Software

    Hi! I need to build the relational model of a database I already have. Does anybody know if there would be a software or so that would make it for me withou me having to rebuild the database? I found some software like CaseStudio, but i'd like somthing simpler, that would import the SQL script...
  4. rbauerle

    date array

    I need to build an array containnig all dates between two other dates (date1 and date2, witch are variables). My problem is: i don´t know very well how to manipulate dates. that would have to be: $date1 = 2004-07-30 $date2 = 2004-08-03 $array[0] = "2004-07-30" $array[1] = "2004-07-31"...
  5. rbauerle

    simple ip question

    How do I get the user's ip address? Tks.
  6. rbauerle

    send variable with this.form.submit, or something like it...

    Hi all! I'm working on a form which the user reloads many times while filling it to change fields accaording to what the user fills. My problem is that i need the focus to be on the last filled field when the page is reloaded. I'm using this.form.submit(page.php). I thougth of sending a...
  7. rbauerle

    help with password validation

    I have to compare the user's passwd to the one in my db. The passwd was inserted in db with INSERT INTO table (fileds ... passwd) VALUES (values ... PASSWORD('typed_password')). I already tried to compare in two ways: SELECT * FROM table WHERE passwd = PASSWORD('typed_passwd') and SELECT * FROM...
  8. rbauerle

    session variable

    I'm using a session variable in my script and it was working really fine till I transfered the system to a diferent server. Does anybody know if there's some kind of server configuration that would influence the efficiency of a session variable. Note that I'm using a version lower then 4.1 (i...
  9. rbauerle

    form problem

    Does anybody know why on some forms you can just hit ENTER from anywhere and on some others you have to have the focus on the button to hit it? I'd like to be able to hit ENTER whenever I want, from any field in my form on every form I have. Does anybody know how to assure I'll be able to do...
  10. rbauerle

    .mov problem

    Hi there, I'm trying to play a .mov file inside my .swf, when i'm working on it, it seems that everything is fine, but when i export it as swf or exe the .mov simply doesn't appear. Does anybody know what I could be doing wrong? Thanks a lot...
  11. rbauerle

    global stack not working

    I'm trying to use a global array and i have to manipulate it inside a function, but every time i start the function again it is empty. I'm using array_push to add elements (strings) to the array. The array is declared outside the function and inside the function I have 'global $array;' in the...
  12. rbauerle

    What's the function i have to use t

    What's the function i have to use to write just the first 50 characters of a string? Thanx very much.
  13. rbauerle

    INSERT HELP

    I need to insert a name and another's table id into a table. For example: name = John id = table2.id The problem is I don't have this id value. I would have to take it from a Select an use it in an Insert at the same time I insert a common value, so that insert..select doesn't do exactly what i...
  14. rbauerle

    Image upload

    I need to make an image upload to the folder 'images' on the website I'm working in. Does anybody have a script for me to use as an example. Thanks a lot.
  15. rbauerle

    Sening html with images

    I need to send an e-mail in html that contains pictures. I know I have to send the images with the message, but I don't know how to do it. I also know that attaching the images is not enough. Can someone help? Thanks a lot.
  16. rbauerle

    time problem

    I need to get the server time and save it to db in a time field in the format: hh:mm:ss. Does anybody know how to get server time and convert to this format? Thanks in advance...
  17. rbauerle

    crypt

    Is there a way to decript a field from db? Thanks.
  18. rbauerle

    HELP!! Enum field in mysql

    is there a way i can get the values of enum fields indexes? I wonder if there's a function as there is mysql_field_name() to get the name of fields. If anyone could help, thanx in advance.
  19. rbauerle

    Redirect to another page

    How can I redirect to another page without having an user's request? In ASP it would be: response.redirect(page_name.asp) Thnks in advance, rbauerle
  20. rbauerle

    testing division rest

    How can I test if the rest of a division is zero? For example: 6/3=2 rest=0 or 6/4=1 rest=2 Thanks a lot

Part and Inventory Search

Back
Top