Jump to content

chintansshah

Members
  • Posts

    244
  • Joined

  • Last visited

Posts posted by chintansshah

  1. Guys,

     

    I have 7 years of php web development experience. I had worked on CMS, frameworks and core php.

    For portfolio and project estimation, add me on skype : freelanceinphp and gtalk : freelanceinphp

     

    Send me your project details on freelanceinphp@gmail.com, I will send you time estimation and costing.

     

    I am low rate freelancer from India.

  2. Hey this is Chintan shah from India,

     

    I have 5 years of web site development experience in php, Mysql.

     

    I design and create beautiful and professional website for low costs.

     

    I do everything from a to z for your website building experience and make sure it goes smoothly.

     

    I design the website

    I setup the domain

    I setup the hosting

    I write a scripts in php and design database in Mysql

    I can maintain the website

    I can help with SEO

    If you would like to get a quote for our services please email us.

     

    Our pricing is starting from $55 to build a new website

     

    Thanks for checking this post out!!

     

    Chintan shah

    Gtalk: freelanceinphp

    Email: freelanceinphp@gmail.com

    Skype: freelanceinphp

  3. I have this and it still does not update database, it uploads though........

    <?php
    if($_POST['submit']){
    // Where the file is going to be placed
    $target_path = "images/".$_SESSION['username']."/";
    
    foreach ($_FILES["uploadedfile"]["name"] as $key => $value) {
    $uploadfile = $target_path . basename($_FILES[uploadedfile][name][$key]);
    //echo $uploadfile;
    if (move_uploaded_file($_FILES['uploadedfile']['tmp_name'][$key], $uploadfile)) {  $sql = mysql_query("UPDATE pics SET link='$target_path', name='$uploadedfile'  WHERE id='$userid1'")or die(mysql_error());
    echo $value . ' uploaded<br>'; }
    }
    
    }
    
    ?>

     

    Can you print your query on screen, if you get correct value then you should identify some other problem.

    I think, your query should be

    $sql = mysql_query("UPDATE pics SET link='".$target_path."', name='".$uploadedfile."'  WHERE id='".$userid1."'")or die(mysql_error()); 

  4. I am working on lovcalhost. After login I want to redirect it to my homepage.php but browser gives me below error.

     

    The page isn't redirecting properly
    
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    
                *   This problem can sometimes be caused by disabling or refusing to accept
              cookies.
    
          

     

    After login.php, action is validation.php and if user enter correct value then it redirects to homepage.php

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