Jump to content

minidak03

Members
  • Posts

    63
  • Joined

  • Last visited

    Never

Posts posted by minidak03

  1. Hi there,

     

    Here are a few of my qualifications to kick things off:

     

    - 7 Years of PHP Work

    - 7 Years of MySQL Work

    - 10 Years of (X)HTML Work

    - 8 Years of CSS Work

    - 5 Years of Wordpress Development

    - 6 Years of JavaScript Development

    - 3 Years of AJAX Development

    - Facebook Application Development And Social Integration (Been working with the Facebook platform since it launched)

     

    My prices are very competitive compared to the industry standard (Just $40 CDN/day, doesn't matter how large the project).

     

    Additionally here are a few things which I have done in the past and which I am more then capable of handling, keeping in mind this is not a full list of what I can do, I perform a lot of customized work for various people and companies which makes me quite a diverse programmer.

     

    * WordPress Plugins (Tweaking Existing Plugins As Well As Developing Custom Solutions)

    * Converting CSS/Photoshop Templates To Wordpress Themes Or Fully Functional Websites

    * Integrating PayPal In To Various Websites

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites to make them more social

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, online advertising, marketing and social integrations.

     

    I would just like to thank you for taking the time to look over my thread and I hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    phrikk@gmail.com

  2. Your first error is right here "if ($v_name==""  or $v_msg=="")" look at the code below I fixed your errors and have given you with what you need.

     

    <?php
    define('DB_NAME', 'dbname');
    define('DB_USER', 'phpchick');
    define('DB_PASS', 'password');
    define('DB_HOST', 'localhost');
    
    // contact to database
    $connect = mysql_connect( DB_HOST, DB_USER, DB_PASS ) or die( 'Error , check your server connection.' );
    mysql_select_db( DB_NAME );
      
    //Get data in local variable
    $v_name = $_POST['name'];
    $v_email = $_POST['email'];
    $v_msg = $_POST['msg'];
    
     // check for null values
    if( $v_name == "" || $v_msg == "" ) {
    	$query = "INSERT INTO contact(name,email,msg) VALUES ('$v_name','$v_email','$v_msg')";
    	$result = mysql_query( $query );
    
    	if( !$result ) {
    		die( mysql_error() );
    	}
    
    	echo <<<EOD
    		<head>      
    			<link rel="stylesheet" type="text/css" href="http://site.com/signup.css">
    		</head>
    		<h2>Free Registration</h2>
    		<form action="contact_insert2.php" method="POST" id="insert">
    			<table>
    				<tr>
    					<td>Email</td>
    					<td ><input type="text" size="40" name="name"></td>
    				</tr>
    			    <tr>
    					<td>Password</td>
    					<td><input type="password" size="40"  name="msg" ></td>
    				</tr>
    				<tr>
    					<td colspan=2 id="sub">
    						You must enter an email and password. <br />
    						<input type="submit" name="submit" value="submit">
    					</td>
    				</tr>
    			</Table>
    		</form>
    EOD;
    }
    elseif( strcspn( $_REQUEST['msg'], '0123456789' ) == strlen( $_REQUEST['msg'] ) ) {
    	echo "true";
    }
    else {
    	$query = "INSERT INTO contact(name,email,msg) VALUES ('$v_name','$v_email','$v_msg')";
    	mysql_query( $query );
    
    	if( !$result ) {
    		die( mysql_error() );
    	}
    
    	echo "Your message has been received";
    }
    ?>
    

     

    I don't want to sound rude by saying this but you need to read some more PHP tutorials you've made a decent amount of amateur mistakes but if your new to PHP its ok we've all wen't through it in the past.

     

    I didn't verify your SQL statements so those may or may not be correct but the actual structure and design flow should work for you now.

  3. Hi there,

     

    I won't waste too much of your time so I will just jump right in by providing you with a few of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - Facebook Application Development And Social Integration (Been working with the Facebook platform since it launched)

     

    My prices are very competitive compared to the industry standard since I work for myself and don't have to overcharge in order to keep a company profitable. I am able to give you a free quote if you are interested in my services.

     

    All I ask if you are inquiring about a quote is to be as specific as possible, the better you lay out the job requirements the better I can accurately tell you how long and how complicated the work is and overall how much I would charge for the type of work required.

     

    Additionally here are a few things which I have done in the past and which I am more then capable of handling, keeping in mind this is not a full list of what I can do, I perform a lot of customized work for various people and companies which makes me quite a diverse programmer.

     

    * WordPress Plugins (Tweaking Existing Plugins As Well As Developing Custom Solutions)

    * Converting CSS/Photoshop Templates To Wordpress Themes Or Fully Functional Websites

    * Integrating PayPal In To Various Websites

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites to make them more social

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, online advertising, marketing and social integrations.

     

    I would just like to thank you for taking the time to look over my thread and I hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    minidak03@gmail.com

  4. Is this because I am using a script, within a script?

     

    Basically yes, you cannot do what you did (example below)

     

    $mailto = "<?
             $lines = file('basedata.txt');
             $l_count = count($lines);
             for($x = 0; $x< $l_count; $x++)
             {
             }
             
             echo "" . $lines[9] . "" ;
             ?>";

     

    But you can do something like I did in my previous post.

  5. Put this on the page (or pages) where you want your footer to appear.

     

    <?php include_once('/path/footer.php'); ?>

     

    Then in your footer.php file place whatever code you want to use for your footer.

     

    Even if its a user generated page (Well depending on how you enable them to generate the pages) it's the easiest solution.

  6. The bit I'm a little stuck on is the idea of wrapping a link tag around the name, in the example (which is excellent in explaining what and how the link is constructed) it seems that each link needs manually adding.

     

    Would I be right in thinking that I could add this in a loop for each record retrieved from table?

     

    That is exactly right you would get the names back from the database or other data source, put them into an array or object, create a loop for each item in the array or object and then this will enable you to generate the urls dynamically (making them unique to each user).

  7. I'm not 100% sure if I'm understanding this right but try the following.

     

    <?php
    $email = $HTTP_POST_VARS[email];
    $lines = file('basedata.txt');
    foreach($lines as $line) {
    $mailto = $line;
    $mailsubj = "Website Contact Form submission";
    $mailhead = "From: $email\n";
    $mailbody = "Values submitted from web site contact form:\n";
    
    foreach( $HTTP_POST_VARS as $key => $val ) {
    	$mailbody .= "$key : $val\n"; 
    }
    
    if(!eregi("\n",$HTTP_POST_VARS[email])) {
    	mail($mailto, $mailsubj, $mailbody, $mailhead); 
    }
    }
    ?>
    

     

    If that doesn't work can you explain a little more what is going on? What are the errors? is the email being sent but the data is displayed incorrectly?

  8. You'll need to use a double loop like the example below

     

    <?php <fieldset class="tercero" style="" >
    			<legend>Services</legend>
                     <ol> <?php
                        foreach($arrRestaurantsOfferings as $arrRestaurantsOffering) {
                            echo '<li class="restaurants-offerings-%u">';
                            foreach($arrRestaurantsOfferings as $arrRestaurantsOffering) {
                                    printf(
                                '
                                      <input type="checkbox" name="frmSearch[offerings][]" value="%u" id="restaurants-offerings-%u"%s>
                                      <span for="restaurants-offerings-%u" class="checkboxes23">%s</span>
                                '
                            );
                            }
                            printf(
                                '
                                      <input type="checkbox" name="frmSearch[offerings][]" value="%u" id="restaurants-offerings-%u"%s>
                                      <span for="restaurants-offerings-%u" class="checkboxes23">%s</span>
                                </li>'
                                ,$arrRestaurantsOffering['restaurant_offerings_id']
                                ,$arrRestaurantsOffering['restaurant_offerings_id']
                                ,$arrRestaurantsOffering['restaurant_offerings_id']
                                ,in_array($arrRestaurantsOffering['restaurant_offerings_id'],$arrOfferings)?' checked="checked"':''
                                ,$arrRestaurantsOffering['restaurant_offerings_id']
                                ,$arrRestaurantsOffering['name']
                            );
                        }
                    ?>
                   
                
                <?php } ?></ol></fieldset>
    ?>
    

     

    Please note that example probably won't work, it was just to show you a method that you can use to loop through all of the records and display your li tags and then display the span and input tags between each.

     

    Depending on the exact output your looking for you may need to put in some if statements to stop the inner loop at a certain point so that the outter loop may continue.

  9. P.S. there are a couple other minor syntax errors in the script but I just noticed the following which is hard to see upon first look, just below that line I fixed for you you'll find this

     

    mysql_guery

     

    Notice anything about that spelling? It should be

     

    mysql_query

     

    That is what is most likely your major cause of your problems.

  10. If all your data is stored in the database what you'll need to do is use JavaScript and AJAX to dynamically generate that data. Have a look at the example below.

     

    <script type="text/javascript">
        function fire_ajax( dropDownFired ) {
            // What you need to do here is make an AJAX call to a php (or other) script to get
           // back the required data and once you have that data show the second drop down
          // box and so on ect...
        }
    </script>
    
    <!-- Drop Down 1 -->
    <select name="dd1" onchange="fire_ajax('1')">
          <option value="1">1</option>
    </select>
    
    <select name="dd2" onchange="fire_ajax('2')" style="display:none;">
          <option value="1">1</option>
    </select>
    

     

    Sorry thats not a 100% answer but there is a bit of work required (maybe 30 mins or so) to write up everything and test it, ect...

     

    Basically what you'll want to do in your Javascript is make an AJAX call to get back the data, then use Javascript to change the css display of the second drop down to "Block" and then use Javascript to dynamically fill in the values of that drop down list.

     

    This is done much easier when using a Javascript library like jQuery.

  11. Its hard to really drill down without seeing your source code but I can give you a little something to go by if you can handle doing the queries and a little bit of HTML/PHP yourself.

     

    Basically if I understand you correctly your issue isn't so much turning there names into links but understanding more or less how to retrieve there data correctly when that link is clicked.

     

    If this is correct here is a general workflow you can use to achieve your goal.

     

    1) When you dynamically generate the tables with player names, ect... also pull back the unique id stored in the database (this is usually called 'id' but it can be anything), this is also usually the primary key and it's usually set to auto-increment (making it unique to each user).

     

    2) When your displaying this information into the html table, create the link around there name (see example below)

     

    <a href="">This is there name</a>

     

    Now the location of the link will point to the page where you want to display the users data so something like this

     

    <a href="http://blabla.com/show_user_data.php">This is there name</a>

     

    Now the last step is to add a query to the end of that url and this query will store the unique database id of this user so something like this

     

    <a href="http://blabla.com/show_user_data.php?user_id=543">This is there name</a>

     

    Then dynamically insert the unique database id where the number 543 is, from there when the user clicks on the link you can access that user_id paramater using the PHP $_GET or $_REQUEST variables.

     

    So from here if a user clicks a link they are brought to the show_user_data.php page and on this page you would have something like the below code

     

    <?php 
        $user_id = $_GET['user_id']; 
    
        // now after this use the value in $user_id var to get this users data from the database
        $query = "SELECT * FROM table WHERE id = '$user_id';
    
        // and now perform your query and any other php work to display that information
    ?>
    

     

    I hope this helps you out a bit.

  12. Well very quickly on line 39 you have the following code which is missing an end bracket

     

    $newsupdate = strip_tags($_POST['update'];

     

    The above is what you have and the below is what you should have

     

    $newsupdate = strip_tags($_POST['update']);

     

    Now that would not cause it to only show a white page and there is nothing in that code which could cause a fatal error, what I'm thinking is that something in your config.php file is causing a fatal error and somewhere you probably have turned off show all errors.

     

    Look for something like this below in your code

     

    error_reporting(0);

     

    and change it to

     

    error_reporting(E_ALL);

     

    This will then display an error on your page as well as all warnings. You may also have this featured turned off in your php.ini file, double check that file for the code below.

     

    error_reporting = off

     

    You can also try to turn your error reporting on by using the below code

     

    ini_set("display_errors", 1);

     

    This way if you have error reporting on and you still see a white blank page, we can rule out any hidden PHP errors and where they are coming from, if it does still display a blank page, try loading it up in a different browser and see what happens.

     

    However if it does display an error after you turn reporting on then post the error here or look at the file (and the line in that file) which is causing the fatal error.

     

    I hope that helps you out a bit.

     

  13. Here are some of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - 2 Years working with the eBay API (I've also had previous applications pass the intensive eBay compatibility checks)

    - Facebook Application Development

    - PayPal payment interfaces (Creating payment gateways for various websites, I'm well versed in the various security programming required when dealing with this type of work)

     

    My prices are very competitive compared to the industry standard and if you are interested in my services I can give you a quote at no charge.

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins (Tweaking Existing Ones As Well As Developing Custom Plugs)

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers (Although these types of scripts need continuous updates)

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization) - I do implementation, consulting, and training.

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook, eBay

    * Integrating Facebook into existing websites (Facebook Connect)

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools (I'm also an affiliate marketer so I'm well versed in all aspects surrounding this industry)

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, and online advertising and marketing

     

    This is not a full list of what I can do and I am very flexible and responsible when it comes to working with my customers.

     

    If you are interested in my services please feel free to contact me any time and I will respond as soon as possible.

     

    Thank you for taking the time to look over my skill set. I'm hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    minidak03@gmail.com

  14. What's the simplest way to build a countdown counter using php? Assuming that I want $time to countdown to 0.

     

    <!-- put this at the top of the page --> 
    
    <?php 
    
          $mtime = microtime(); 
    
          $mtime = explode(' ', $mtime); 
    
          $mtime = $mtime[1] + $mtime[0]; 
    
          $starttime = $mtime; 
    
    ?> 
    
    
    
    <!-- put other code and html in here --> 
    
    
    
    
    
    <!-- put this code at the bottom of the page --> 
    
    <?php 
    
          $mtime = microtime(); 
    
          $mtime = explode(" ", $mtime); 
    
          $mtime = $mtime[1] + $mtime[0]; 
    
          $endtime = $mtime; 
    
          $totaltime = ($endtime - $starttime); 
    
          echo 'This page was created in ' .$totaltime. ' seconds.'; 
    
    ?>
    

     

    Remember PHP executes on the server so you'll never actually see a timer counting if you want to see an actual timer you'll need to use JavaScript.

     

    The code provided counts up and not down if you want something that counts down just use a while loop

     

    $timer = 500;
    
    while($timer > 0) {
    // do something here
    $timer--;
    }
    

     

    There are a variety of different ways you can do this depending on how you actually need it to perform.

  15. I quickly tested out your script and it does send the email just fine which means I would double check your hosting account to make sure they allow the use of the PHP mail() function, I do know that some providers disable it (Reasons of which are unknown).

     

    As for the PHP data collection, that also seems to be working fine, I got all of the post fields without changing anything.

     

    As for the meta redirect I would try using the full url so http://mydomain.com/thankyou.html instead of just thankyou.html

     

    @DrTrans - Yes true the header function should be used over the HTML redirect but only use the header function if you are not sending out any data to the screen.

     

    Eg of working header

    -----

    header('Location: http://blabla.com');

     

    some HTML

    ------

     

    Eg of non working header

    -------

    some HTML

     

    header('Location: http://blabla.com');

    ------

     

    Hope that helps a little bit.

  16. The check_url function just takes the URL and makes sure its safe to use, and the check_plain function is just used to encode special characters, so it changes the & symbol to &

     

    The if($logo) part is just there to determine if the script has a URL to a particular logo.

     

    If your trying to display logo 1 for the first language and logo 2 for a second language try the following

     

    <div id="logo-floater">
              <?php
    if($language->name == "Dutch") {
       $logo = 'location_of_dutch_logo';
    }
    elseif($language->name == "English") {
    $logo = 'location_of_english_logo';
    }
              ?>
              <h1> <a href="<?php print check_url($front_page); ?>">
                <?php if ($logo): ?> 
                  <img src="<?php print check_url($logo); ?>" 
                       title="<?php print check_plain($site_name) . check_plain($site_slogan); ?>" 
                       alt="<?php print check_plain($site_name) . check_plain($site_slogan); ?>" id="logo" />
                <?php endif; ?>
                

     

    In this code you have to know the value of the $language->name variable but you can also change out the $language->name == "English" part with $language->language == 'en' which would be might be more stable and easier to use

  17. Here are some of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - Facebook Application Development

     

    My prices are very competitive compared to the industry standard and if you are interested in my services I can give you a quote at no charge.

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins (Tweaking Existing Ones As Well As Developing Custom Plugs)

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, and online advertising and marketing

     

    This is not a full list of what I can do and I am very flexible and responsible when it comes to working with my customers.

     

    If you are interested in my services please feel free to contact me any time and I will respond as soon as possible.

     

    Thank you for taking the time to look over my skill set. I'm hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    minidak03@gmail.com

  18. Here are some of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - Facebook Application Development

     

    My prices are very competitive compared to the industry standard and if you are interested in my services I can give you a quote at no charge.

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins (Tweaking Existing Ones As Well As Developing Custom Plugs)

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, and online advertising and marketing

     

    This is not a full list of what I can do and I am very flexible and responsible when it comes to working with my customers.

     

    If you are interested in my services please feel free to contact me any time and I will respond as soon as possible.

     

    Thank you for taking the time to look over my skill set. I'm hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    minidak03@gmail.com

  19. Here are some of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - Facebook Application Development

     

    My prices are very competitive compared to the industry standard and if you are interested in my services I can give you a quote at no charge.

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins (Tweaking Existing Ones As Well As Developing Custom Plugs)

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, and online advertising and marketing

     

    This is not a full list of what I can do and I am very flexible and responsible when it comes to working with my customers.

     

    If you are interested in my services please feel free to contact me any time and I will respond as soon as possible.

     

    Thank you for taking the time to look over my skill set. I'm hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

    minidak03@gmail.com

  20. Here are some of my qualifications:

     

    - 6 Years of PHP Work

    - 6 Years of MySQL Work

    - 8 Years of (X)HTML Work

    - 5 Years of CSS Work

    - 4 Years of Wordpress Development

    - 4 Years of JavaScript Development

    - 2 Years of AJAX Development

    - Facebook Application Development

     

    My prices are very competitive compared to the industry standard and if you are interested in my services I can give you a quote at no charge.

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins (Tweaking Existing Ones As Well As Developing Custom Plugs)

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, Facebook

    * Integrating Facebook into existing websites

    * Building very interactive database driven websites

    * Custom Built Marketing & Advertising Tools

    * Custom Built Tracking Solutions

    * Updating & Changing Any Existing Open Source PHP Files

    * Consulting on a variety of topics including programming, search engine optimization, and online advertising and marketing

     

    This is not a full list of what I can do and I am very flexible and responsible when it comes to working with my customers.

     

    If you are interested in my services please feel free to contact me any time and I will respond as soon as possible.

     

    Additionally I just signed up on Elance to provide my services in a more safe and professional manner, I haven't taken on any jobs via Elance yet but my provider profile can be found through this link.

     

    http://www.elance.com/php/profile/main/eolproviderprofile.php?view_person=minidak03&catid=100&from=myelance

     

    If you would like to hire me please consider doing so through Elance, this is not a requirement but it will keep both parties safe, no money changes hands until the job is done to your satisfaction (This is done through the Elance Escrow Service). Plus I won't lie if I take on more jobs through Elance it will increase my provider profile which will lead to more jobs for me.

     

    Thank you for taking the time to look over my skill set. I'm hope you are pleased with what you see and I look forward to working with you in the future.

     

    Sincerely,

    Adam Losier.

     

    P.S. Yes I did copy and paste the majority of this from my Elance profile.

  21. Something just like this usually works for me just fine (Thats when the \n or \r\n method does not work)

     

    <?php
          $to = "email@yoursite.com";
          $headers = "From: whoever@what.com";
    $subject = "anything";
          $message = "Line one
          
          This is now on the third line
    This is on the fourth line
    
    this is on the sixth line";
          mail($to,$subject,$message,$headers);
    ?>
    

     

    But your right it may have something to do if your setting html headers

  22. Depending on your server sometimes \n and \r\n doesn't work, for some reason on my GoDaddy servers both the \n and \r\n won't work when I'm sending out my emails, try the following method if \n and \r\n doesn't work for you.

     

    (This method is not the best way to do it but it does work)

     

    $body = "....You have received these contact details from form...:
    
    ";
    
    foreach($fields as $a => $b){ 
         $body .= sprintf("%20s: %s
    ",$b,$_REQUEST[$a]); } 

     

    I just placed in a hard return (hit enter to create a new line) which works for certain providers.

  23. Hello Everyone,

     

    I'm not new to freelancing but I am somewhat newer to the PHP Freaks forums and even though I'm willing to help out for free in the other sections of the forums I would also like to take the time to advertise my services here.

     

    Here are some of my qualifications:

     

        - 6 Years of PHP

        - 6 Years of MySQL

        - 8 Years of (X)HTML

        - 5 Years of CSS

        - 4 Years of Wordpress Development

        - 4 Years of JavaScript

        - I've also built 4 Facebook applications

        - I also have 3 years experience with ASP.NET (1.0 & 2.0) but I no longer contract out work using ASP

        - In total I've been programming for just over 9 years

     

    Here are a couple of websites which I have created 100% by myself using PHP.

     

    http://www.flashplayers.net

    http://www.amplegains.com

    http://www.realvms.com - Where I developed a custom Wordpress plugin

     

    I've got a solid reputation on another forum called WickedFire, my username there is Aequitas and you can see some 100% positive feedback on my iTrader notifications, I can prove that its me if you send me a private message there in response to this one and I will respond to it.

     

    My prices are very competitive compared to the industry standard, if you are interested in my services I can give you a quote at no charge and am very good with deadlines.

     

    You can contact me by PM or email (minidak03@gmail.com)

     

    Here are a list of things which I am more then capable of handling.

     

    * WordPress Plugins

    * Converting CSS Templates To Wordpress Themes

    * Integrating PayPal In To A Website

    * Building Website Scrapers

    * Coding A PSD Design or Template Into A Fully Functional Website

    * On-Site SEO (Search Engine Optimization)

    * Various API Integrations - YouTube, Google, Delicious, Yahoo, ect...

     

    This is not a full list of what I can do and am very flexible and responsible when it comes to working with my customers.

     

    Thank You.

    Adam Losier.

    minidak03@gmail.com

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.