Jump to content

me16_17

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by me16_17

  1. sorry for spamming this, didnt know where to ask so i posted in 3 different placesMy client wants a form for employees to enter hours for billining purposesI want the form to save what the employee enters into an external file depending on which employee is submitting information so that my client can have a link for each employee to the file containing each employee's hoursany help? lolalso, i dont even know if its possible, is it posible for form submission to be added to an excell file? so the client can view the submitted info in excell?
  2. My client wants a form for employees to enter hours for billining purposesI want the form to save what the employee enters into an external file depending on which employee is submitting information so that my client can have a link for each employee to the file containing each employee's hoursany help? lolalso, i dont even know if its possible, is it posible for form submission to be added to an excell file? so the client can view the submitted info in excell?
  3. My client wants a form for employees to enter hours for billining purposesI want the form to save what the employee enters into an external file depending on which employee is submitting information so that my client can have a link for each employee to the file containing each employee's hoursany help? lolalso, i dont even know if its possible, is it posible for form submission to be added to an excell file? so the client can view the submitted info in excell?
  4. me16_17

    Flash Menue

    ok did some work on it, and now i have a different problem with it, so now i have it displaying correct but i cant have the buttons work for some reason when they are inside the mc, how do i fix this?
  5. me16_17

    Flash Menue

    ok go here... www.venividi-vici.com/menuetest.htmlthe .fla is here so you can see what im doing... its extremely simple but i dont know whats going on www.venividi-vici.com/menuetest.flawhen you hover over the inlaid buttons they all flash... why?
  6. me16_17

    Search Engines

    Search Engines check text and links in html and factor that in to placement, so how does that come into play with flash?
  7. ya thats the code i pasted above
  8. what code are we talking about that the white space needs to be fixed?
  9. still cant seem to get it to workheres the code <?php $auth = false; // Assume user is not authenticatedif (isset( $PHP_AUTH_USER ) && isset($PHP_AUTH_PW)) { // Read the entire file into the variable $file_contents $filename = 'password.txt'; $fp = fopen( $filename, 'r' ); $file_contents = fread( $fp, filesize( $filename ) ); fclose( $fp ); // Place the individual lines from the file contents into an array. $lines = explode ( "\n", $file_contents ); // Split each of the lines into a username and a password pair // and attempt to match them to $PHP_AUTH_USER and $PHP_AUTH_PW. foreach ( $lines as $line ) { list( $username, $password ) = explode( ':', $line ); if ( ( $username == "$PHP_AUTH_USER" ) && ( $password == "$PHP_AUTH_PW" ) ) { // A match is found, meaning the user is authenticated. // Stop the search. $auth = true; break; } }}if ( ! $auth ) { header('WWW-Authenticate: Basic realm="Private"'); header('HTTP/1.0 401 Unauthorized'); echo 'Authorization Required.'; exit;} else { echo '<P>You are authorized!</P>';} ?>
  10. ok im trying to make a basic not really all that secure password system (because i dont know how to use encrypted files )http://65.170.242.137/mail.phpbut i am getting this errorWarning: Cannot modify header information - headers already sent by (output started at C:\Program Files\Apache Group\Apache2\htdocs\mail.php:7) in C:\Program Files\Apache Group\Apache2\htdocs\mail.php on line 47Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\Apache Group\Apache2\htdocs\mail.php:7) in C:\Program Files\Apache Group\Apache2\htdocs\mail.php on line 48it has been giving me this error whenever i try to use the header() command
  11. Quick question, i just started the tutorials for php, what format do I save as? i'm not seeing it. Am I just saving them as .html s? .php? .dll? i have nooooo ideai think its .php , but then how do i impliment that into an html document?....i just read more and more of the tutorials and im starting to understand it so i appologize for the question! still any comments would be nicelol i keep editing this postso i was trying out the form example, and it returns the contents of the .php as code instead of executing the code, does this mean php isnt working on the server?I installed php and apache but couldnt figure out how i needed to configure apache to work with php
  12. me16_17

    IE/MAC problem

    http://marblemountainranch.com/beta3/html/horses.htmllooks perfect on IE on PC but on a mac it all gets pushed to the rightthe links arnt active but they arent the problemany help?????
  13. me16_17

    Blog Project

    lol... fuunnnnnnn well i have this book for perl sitting here that i've been avoiding will that work? or does it need to be one of those.
  14. me16_17

    Blog Project

    Ok so I'm interested in creating a blog service, i know html, some JS, and I have a good handle on css, so where do I go from here, anything else I need to learn? It's a huge project but I have time to kill and want to make one, any suggestions on how to get started?
  15. me16_17

    Slide Show

    well it doesnt have to be a slide show and i have a version working without the link idea but it would be cool if instead of them automatically rotating they rotated when the user moused over the corrosponding link.the black borders on the images is just because the images weren't wide enough so i made a larger canvas as a place holder for nowwww.venividi-vici.com/from scratch/test.htm
  16. me16_17

    Opacity command

    wait that still didnt work in IE
  17. me16_17

    Opacity command

    is there a way to make just the background in a div transparent but not the contents?
  18. me16_17

    Slide Show

    also, if someone is going to help me with this, how do i get the links to look more professional? perhaps closed in a box or something, its going on a company website, but like i said it uses JS and i dont know that lol
  19. me16_17

    Slide Show

    alright so i understand how i need to modify that one to make it work but i done know JS i only know html and css, could anyone help me with that? i'd really appreciate it, basically i just need to change the submenue to display a photo instead of more links
  20. me16_17

    Opacity command

    Is it possible to get the opacity command to work in IE?
  21. me16_17

    Slide Show

    So this is what I want:A horizontal menuewhen the user scrolls over a button on the menue the picture below it changes appropriatelyexample:user hovers over "rafting" menue button, and the picture below the menue changes from what it was into a picture of rafting.is this possible? so again, a basic clean horizontal menue, with a slide show effect
  22. try this body{background-image: url('arthur.jpg')}
×
×
  • Create New...