Jump to content

me16_17

Members
  • Posts

    42
  • Joined

  • Last visited

me16_17's Achievements

Newbie

Newbie (1/7)

0

Reputation

  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.
×
×
  • Create New...