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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rbauerle

  1. rbauerle

    downloading file problem

    Well. I see your point. The problem with my script was that I was trying to download the files form another directory. So I decided to leave the files in the current directory and it seams to be working really well now. Thanks a lot, anyway. Renata
  2. rbauerle

    downloading file problem

    header('Content-type: application/txt'); header('Content-Disposition: attachment; filename="test.txt"'); readfile('test.txt'); this was my last try. still doesn't work. it opens the file - shows its content. Would there be an example of a working script for me to take a look? Renata
  3. rbauerle

    downloading file problem

    It's not working the way I thought it would. This is what I'm doing: <? header('Content-type: application/txt'); header('Content-Disposition: attachment; filename="arqs/test.txt"'); ?> Note that this file is not being generated here. It was previously uploaded to the folder 'arqs/'. How do...
  4. 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
  5. 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
  6. 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...
  7. rbauerle

    echo &quot;&quot; ??

    you can also have: echo "<TR align=\"center\"><TD> $nom_prenom</TD></TR>"; []'s
  8. rbauerle

    date array

    thank you all!! that was more then helpfull. Renata
  9. 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"...
  10. rbauerle

    simple ip question

    that was very, very usefull. Tks again
  11. rbauerle

    simple ip question

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

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

    I mean I can't have an <input type="hidden" ...>. I need something that will be posted only when I click an specific button, or field.
  13. rbauerle

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

    I can´t have a hidden field, because I have several fields that submit the form. I have to send the name of the field to be focused only when this field is the one that submits the form...
  14. 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...
  15. rbauerle

    help with password validation

    We always get the same value. It's working now. Just don't ask me what I did for this to work 'cuz I don't know. Anyway, yhank you.

Part and Inventory Search

Back
Top