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 Chriss Miller 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: mmaz
  • Content: Threads
  • Order by date
  1. mmaz

    record selection: is this ok?

    Hello, My application enables users to maintain(insert, update & delete) a list of companies. A combobox lists all the company names, and when the user selects a company, its full profile is displayed. This is how I did it, but I don't know if there's a better way: Fill my combobox from...
  2. mmaz

    simple question

    Hello, I have *very* little experience in OOP, but I've managed to build a simple application that lets users manage a directory of companies (in Java). Now, I have to insert authentication functionality. The user interface will look a little different upon login. If they're administrators...
  3. mmaz

    upload file question

    Hi, I'm uploading a file to my server using <input type = file...>, and everything works fine. There's just one little problem. When the user fills out the form (name, phone number, etc), selects the file to upload and then selects the &quot;Submit&quot; button, the form will be re-displayed...
  4. mmaz

    Array in a session variable?

    Hi, I have to write an application with 6 forms on 6 different pages. The user fills out the first form, then clicks on next and fills out the second form, clicks next and so on. When all the forms are filled out, the user must have the option to go back to any of these forms and change any...
  5. mmaz

    need help with determining classes

    Hi there, I have to build a simple application (used by less than 10 people) that must run on Linux and Windows, so I've decided to use Java. We do not have a designer here, so I have to do the Analysis and design. I know the concepts of OOAP, but I'm having a bit of trouble to identify the...
  6. mmaz

    administering linux box from Windows xp

    Does anybody know of an open-source software that can do such a thing? Thanks, Marie
  7. mmaz

    single to multi-dimensionnal array

    Hi, I have a one-dimension array, and I want to associate every value in my array with a letter &quot;Y&quot; or &quot;N&quot;. How can I add these Y/N values to the array? Thanks, Marie
  8. mmaz

    special characters

    Hi, My database (MySQL) contains values with special characters (&quot;é&quot;, &quot;è&quot;, etc). My problem is, they're not being displayed correctly on my web page (and in MySQL). For example, &quot;é&quot; is now &quot;é&quot;. Is there a function in php that I can use to fix that...
  9. mmaz

    site search question

    Hi, This question is not specific to php, but since that's the language my script will be written in, I'm asking it here. My organization will soon have a portal, and they want to have a search engine that will search the portal by keywords. I've never done this before, and I was wondering if...
  10. mmaz

    multiselect listbox

    Hi, I have a multiselect listbox on my form, and when the form is submitted, I only get the first value selected, instead of a list of values separated by commas. <?print $lstSecteur; ?> //only prints the first value <form> ... <SELECT size=&quot;3&quot; name=&quot;lstSecteur&quot; MULTIPLE>...
  11. mmaz

    Get and Post dilemna

    Hi, We have a directory of companies and we want to make it searchable and sortable. At the top of the page, there's A B C ...Z, and when the user clicks on one of the letters, I want to get the companies whose name starts with the submitted letter. The problem is, there are also other...
  12. mmaz

    help with directory needed

    Hi, We have a directory of companies and we want to make it searchable and sortable. At the top of the page, there's A B C ...Z, and when the user clicks on one of the letters, I want to get the companies whose name starts with the submitted letter. The problem is, there are also other...
  13. mmaz

    &lt;option&gt; too long

    Hi, I have a dynamic listbox that's populated from a database. My problem is, one of the options is way too long (takes about half of the page). Is it possible to have it written out on 2 lines? Does anybody have a suggestion so that it looks good? Thanks, Marie
  14. mmaz

    simple design question

    Hi, Can anybody can make suggestions as to which approach I should consider if I want to separate my HTML code from my php server-side code? Thanks, Marie
  15. mmaz

    Date::Calc

    Hi, A Perl application I downloaded from the net uses the Decode_Month() function from the Date::Calc package. This functions accepts one argument (number from 1 - 12) and returns the month's name. My question is, what should I do so that it returns the month names in French?? Thanks, Marie
  16. mmaz

    duplicate records problem

    Hi, I have a query that returns results like this: Name of Company Phone Type_Phone CompanyA 334-5554 admin CompanyA 334-7786 fax CompanyB 335-7765 admin CompanyB 335-7634 fax My question is, how can I have one record for each company...
  17. mmaz

    sysread(STDIN) is empty

    Hi, A form is being submitted using the POST method. Is there any kind of code that could flush the data submitted? I'm debugging a Perl program, and when I remove a bunch of code (too long to post here), I can get the form data, but when I insert the code again I cannot get the data...
  18. mmaz

    Redirect

    Hi, How do you redirect a user to another page? In ASP, it would be Response.redirect &quot;www.mysite.com&quot; Thanks, Marie
  19. mmaz

    newbie question

    Hi there, Please look at the code below: #!/usr/bin/perl #use CGI::Carp qw(fatalsToBrowser); use strict; BEGIN { use Cwd; } BEGIN { my $directory = cwd; unshift @INC,$directory; unshift @INC,&quot;.&quot;; } use BAC::Common::Modules::Common; use BAC::CommunityMembers::Modules::Login...
  20. mmaz

    stop running script

    Hi, How do you stop running a script, like Response.end in Active Server Pages? Thanks!

Part and Inventory Search

Back
Top