Page 1 of 3 123 LastLast
Results 1 to 10 of 24
  1. #1
    Join Date
    Jan 2007
    Location
    England, Uk, World, Universe,
    Posts
    1,012
    Tokens
    0

    Latest Awards:

    Default [RELEASE] {V1.1} DOMS JOB SYSTEM

    This Script Is Absoulty free! Just edit the config and it will work fine
    Since its free, i ask that you keep the copyright footer on Thankyou.
    Coming In V1.5:
    -Option to save info to a database/email to admin/Both with an admin panel
    -Security
    Script:
    PHP Code:
    <?php
    ###CONFIGURING FUNCTIONS
    $sitename "YOURSITENAME"##This is used to in the email that gets sent to you
    $siteurl "http://YOURSITE.COM"##NEEDED FOR FORM REDIRECTING.YOU MUST INCLUDE HTTP://
    $formemail "[email protected]"##WHERE THE SITE FORM WILL BE EMAILED TO
    switch ($HTTP_GET_VARS[id]) {
    default:
    echo 
    "<form name=\"jobs\" method=\"post\" action=\"";?><?php $_POST['SELF']?><?php echo"?id=send\">
    <label>Full Name:
    <input name=\"name\" type=\"text\" id=\"name\">
    </label>
    <br />
    <label>Email Address:
    <input name=\"email\" type=\"text\" id=\"email\">
    </label>
    <br />
    <label>Contact Number:
    <input name=\"cotnum\" type=\"text\" id=\"cotnum\">
    <br>
    Job Wanted:
    <select name=\"job_wants\">
    <option value=\"Please Select A Job\">Please Select A Job</option>
    <option value=\"Technician\">Technician</option>
    <option value=\"Support\">Support</option>
    <option value=\"Advertiser\">Advertiser</option>
    <option value=\"Coder\">Coder</option>
    </select>
    <br />
    Previous Experiance:<br />
    <textarea name=\"prevexp\" cols=\"50\" rows=\"8\"></textarea>
    <br />
    Reference (If Any):<br />
    <textarea name=\"reference\" cols=\"50\" rows=\"8\"></textarea>
    <br />
    CV: (If Any)
    <br />
    Write CV: (If Any)<br />
    <textarea name=\"mycv_write\" cols=\"50\" rows=\"8\"></textarea>
    <br />
    <br />
    Why Should WE Hire YOU?:<br />
    <textarea name=\"yhireu\" cols=\"50\" rows=\"8\"></textarea>
    <br />
    <label>Gender:
    <select name=\"gender\">
    <option value=\"Male\">Male</option>
    <option value=\"Feamale\">Feamale</option>
    <option value=\"Other\">Other</option>
    </select>
    </label>
    <br />
    <label>Address:
    <textarea name=\"address\"></textarea>
    </label>
    <br />
    <input type=\"submit\" value=\"Send!\">
    </label>
    <br />
    </form>"
    ;
    break;
    case 
    'send':
    $to $formemail;
    $subject "Jobs $name";
    $name $_POST['name'];
    $contactnum $_POST['cotnum'];
    $writecv $_POST['mycv_write'];
    $wswhy $_POST['yhireu'];
    $email $_POST['email'];
    $job $_POST['job_wants'];
    $ref $_POST['reference'];
    $gender $_POST['gender'];
    $address $_POST['address'];
    ## NEXT PART IS FOR EMAILING!
    $message "Hello
    Please Keep Me Updated!
    Full Name: 
    $name
    Email Address: 
    $email
    Contact Number: 
    $contactnum
    My CV: 
    $mycv_write
    Why We Should Hire 
    $name$writecv
    Job 
    $name Wants: $job_wants
    Reference: 
    $ref
    Gender: 
    $gender
    Address: 
    $address";
    $email_headers 'From: $sitename JOBS SYSTEM' "\r\n" .
    'Reply-To: NO REPLY TO THIS SYTEM.' "\r\n" .
    'X-Mailer: PHP/' phpversion();
    mail($to$subject$message$email_headers);
    print 
    "<center>Thankyou $name!<br />Your Details Were As Followed: <br />Full Name: $name<br />
    Email Address: 
    $email<br />
    Contact Number: 
    $contactnum<br />
    My CV: 
    $writecv<br />
    Why We Should Hire 
    $name$wswhy<br />
    Job 
    $name Wants: $job<br />
    Reference: 
    $ref<br />
    Gender: 
    $gender<br />
    Address: 
    $address<br />";
    break;
    }
    ?>
    <br />It Will Take Up To 48 Hours For A Reply!<br /><a href="$siteurl" />Back To Site...</a></center><br /></a>
    Last edited by rh4u; 17-11-2007 at 06:17 PM.
    my sig ran away,

  2. #2
    Join Date
    May 2007
    Location
    Nebo, NC, USA
    Posts
    2,517
    Tokens
    0

    Latest Awards:

    Default

    Would you quit posting them like that.. please? It drives me nuts.

    Use the PHP/code button to post it, and quit just making one file scripts. ZIP it up

  3. #3
    Join Date
    Nov 2006
    Location
    Narrich
    Posts
    5,687
    Tokens
    0
    Habbo
    Jamesy...

    Latest Awards:

    Default

    What does it do :S
    Ex-janitor. Might pop in from time to time, otherwise you can grab all my information from http://jamesy.me.uk/

  4. #4
    Join Date
    Jan 2007
    Location
    England, Uk, World, Universe,
    Posts
    1,012
    Tokens
    0

    Latest Awards:

    Default

    sorry, i did, i was just having problems with the link back to website stopping the php clicky thing from working.
    if you would like to see a working demo: http://mastersoundz.com/emailer.php
    my sig ran away,

  5. #5
    Join Date
    Jun 2007
    Location
    England
    Posts
    495
    Tokens
    0

    Default

    It basicly emails the input to you, i think

  6. #6
    Join Date
    Jan 2007
    Location
    England, Uk, World, Universe,
    Posts
    1,012
    Tokens
    0

    Latest Awards:

    Default

    Correct, its basicaly there to help you not do coding and get your site going asap
    my sig ran away,

  7. #7
    Join Date
    Jun 2007
    Location
    My place duh!
    Posts
    136
    Tokens
    0

    Default

    Add a layout to it. make it abit more proffesional?
    Atm it just looks like a normal form...

  8. #8
    Join Date
    Jan 2007
    Location
    England, Uk, World, Universe,
    Posts
    1,012
    Tokens
    0

    Latest Awards:

    Default

    thats the responsibility of the user
    they realy just need to do <?php include ("PATH/TO/FILE");?>
    my sig ran away,

  9. #9
    Join Date
    Jan 2007
    Location
    England, Uk, World, Universe,
    Posts
    1,012
    Tokens
    0

    Latest Awards:

    Default

    New Release, Updated A Bug
    PHP Code:
       <?php
       
    ###CONFIGURING FUNCTIONS
       
    $sitename "YOURSITENAME"##This is used to in the email that gets sent to you
       
    $siteurl "http://YOURSITE.COM"##NEEDED FOR FORM REDIRECTING. YOU MUST INCLUDE HTTP://
       
    $formemail "[email protected]"##WHERE THE SITE FORM WILL BE EMAILED TO
       
    switch ($HTTP_GET_VARS[id]) {
    default:
    echo 
    "<form name=\"jobs\" method=\"post\" action=\"";?><?php $_POST['SELF']?><?php echo"?id=send\">
     <label>Full Name:
      <input name=\"name\" type=\"text\" id=\"name\">
      </label>
    <br />
      <label>Email Address:
      <input name=\"email\" type=\"text\" id=\"email\">
      </label>
    <br />
      <label>Contact Number:
      <input name=\"cotnum\" type=\"text\" id=\"cotnum\">
     <br>
     Job Wanted:
     <select name=\"job_wants\">
       <option value=\"Please Select A Job\">Please Select A Job</option>
       <option value=\"Technician\">Technician</option>
       <option value=\"Support\">Support</option>
       <option value=\"Advertiser\">Advertiser</option>
       <option value=\"Coder\">Coder</option>
     </select>
     <br />
     Previous Experiance:<br />
     <textarea name=\"prevexp\" cols=\"50\" rows=\"8\"></textarea>
      <br />
     Reference (If Any):<br />
     <textarea name=\"reference\" cols=\"50\" rows=\"8\"></textarea>
     <br />
     CV: (If Any)
      <br />
     Write CV: (If Any)<br />
     <textarea name=\"mycv_write\" cols=\"50\" rows=\"8\"></textarea>
      <br />
     <br />
     Why Should WE Hire YOU?:<br />
     <textarea name=\"yhireu\" cols=\"50\" rows=\"8\"></textarea>
      <br />
      <label>Gender:
    <select name=\"gender\">
      <option value=\"Male\">Male</option>
      <option value=\"Feamale\">Feamale</option>
      <option value=\"Other\">Other</option>
    </select>
    </label>
    <br />
    <label>Address:
    <textarea name=\"address\"></textarea>
    </label>
    <br />
    <input type=\"submit\" value=\"Send!\">
      </label>
    <br />
    </form>"
    ;
    break;
    case 
    'send':
    $to      $formemail;
    $subject "Jobs $name";
    $name $_POST['name'];
    $contactnum $_POST['cotnum'];
    $writecv $_POST['mycv_write'];
    $wswhy $_POST['yhireu'];
    $email $_POST['email'];
    $job $_POST['job_wants'];
    $ref $_POST['reference'];
    $gender $_POST['gender'];
    $address $_POST['address'];
    $prevexp $_POST['prevexp'];
    ## NEXT PART IS FOR EMAILING!
    $message "Hello
    Please Keep Me Updated!
    Full Name: 
    $name
    Email Address: 
    $email
    Contact Number: 
    $contactnum
    My CV: 
    $mycv_write
    Previous Experiance: 
    $prevexp
    Why We Should Hire 
    $name$writecv
    Job 
    $name Wants: $job_wants
    Reference: 
    $ref
    Gender: 
    $gender
    Address: 
    $address";
    $email_headers 'From: $sitename JOBS SYSTEM' "\r\n" .
        
    'Reply-To: NO REPLY TO THIS SYTEM.' "\r\n" .
        
    'X-Mailer: PHP/' phpversion();
    mail($to$subject$message$email_headers);
    print 
    "<center>Thankyou $name!<br />Your Details Were As Followed: <br />Full Name: $name<br />
    Email Address: 
    $email<br />
    Contact Number: 
    $contactnum<br />
    My CV: 
    $writecv<br />
    Previous Experiance: 
    $prevexp
    Why We Should Hire 
    $name$wswhy<br />
    Job 
    $name Wants: $job<br />
    Reference: 
    $ref<br />
    Gender: 
    $gender<br />
    Address: 
    $address<br />";
    break;
    }
    ?>
    <br />It Will Take Up To 48 Hours For A Reply!<br /><a href="$siteurl" />Back To Site...</a></center><br />
    my sig ran away,

  10. #10
    Join Date
    Jun 2007
    Location
    My place duh!
    Posts
    136
    Tokens
    0

    Default

    Yes i know, but you could center it all, put it in a table with a background or at least change the font.

Page 1 of 3 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •