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

  1. mistergoomba

    disabling form elements with array names

    i have no idea what youre asking, but i figured out how to fix it. im using getelementbyid() and putting an id tag in the input field. thanks, buddy
  2. mistergoomba

    disabling form elements with array names

    my form looks like this: <select name="name[sel]"> <option value="other">OTHER</option> <option value="martin">Martin</option> </select> <input type="text" name="name[txt]"> now when the user selects OTHER, it will disable the text input. changing the names of the variables is not an option...
  3. mistergoomba

    redirect header and post data

    ok, let me clarify the question. i after the form data is sent to 'actions/form.php' i use 'header(Location: ../form.php)' to return to the original form. now, when the user is back at the original form (or any page that i redirect to for that matter) and hits reload, it will try to send the...
  4. mistergoomba

    redirect header and post data

    I have a form 'form.php' which sends post data to 'actions/form.php' which then processes the information and uses header("Location: ../form.php"); exit; to return to the form after the script has executed. The problem is, when the user is returned to form.php and hits 'Refresh' or 'Reload'...
  5. mistergoomba

    newbie question

    i used the server restart exe that came with the apache, didnt work, but restarting my computer did! good enough for me. thanks alot. youre my hero!
  6. mistergoomba

    newbie question

    so close! shortfuse now goes to htdocs rather than htdocs/!shortfuse NameVirtualHost *:80 <VirtualHost *:80> DocumentRoot "C:/Program Files/xampp/htdocs" ServerName localhost </VirtualHost> <VirtualHost *:80> DocumentRoot "C:/Program Files/xampp/htdocs/!shortfuse" ServerName...
  7. mistergoomba

    newbie question

    ok, i think im getting it. NameVirtualHost *:80 <VirtualHost *:80> DocumentRoot ../htdocs/!shortfuse ServerName shortfuse ServerAlias shortfuse </VirtualHost> i've put that in my config file, however whenever i put http://shortfuse/ in the address bar, it searches goes outside the...
  8. mistergoomba

    newbie question

    thanks, now what i would really like to do is set up multiple document roots. similar to setting the virtualhost so that www.example1.com roots to htdocs/example1 and www.example2.com roots to htdocs/example2. ive read up on serveralias hoping that would work, but am not having any luck. what i...
  9. mistergoomba

    newbie question

    i just set up apache and would like to use it locally on my laptop to set up web sites. putting localhost into my browser address bar brings up the directory /htdocs. is there a way to set it up so if i typed in http://example1 in my address bar it will take me to /htdocs/example1 told ya i was...

Part and Inventory Search

Back
Top