Jump to content

me16_17

Members
  • Posts

    42
  • Joined

  • Last visited

Posts 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. 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?

  5. 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>';} ?>

  6. 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

  7. 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

  8. you will need to learn a server side language like ASP,PHP, or ASP.Net. You will also need to learn SQL.Once you have a good handle on those come back and ask again. :)

    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.
  9. 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?

  10. Does it have to be a slideshow? Or is it just for a way to display pictures? There are some cool Pure CSS and HTML thumbnail-like code tht could be used...

    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
  11. 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

    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
  12. This site has some really neat slideshow scripts you can use.Moreover you can edit this script to do just what you wanted above. Watch out, most of these codes will not vaildate.

    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
  13. 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

  14. Am getting more and more frustrated about this!  I'm just trying to create an image as the background to my webpage, using the 'background-image' property in CSS.I've tried everything I can think of but it still won't work.  There may just be a problem somewhere else, however the code in my style sheet looks like this:What am i doing wrong?  Is there some vital piece of info I'm missing?!thanks

    try this
    body{background-image: url('arthur.jpg')}

×
×
  • Create New...