Jump to content

chintansshah

Members
  • Posts

    244
  • Joined

  • Last visited

About chintansshah

  • Birthday 12/15/1983

Contact Methods

  • Website URL
    http://www.freelanceinphp.com
  • Yahoo
    freelanceinphp

Profile Information

  • Gender
    Male
  • Location
    Ahmedabad, India

chintansshah's Achievements

Member

Member (2/5)

0

Reputation

  1. I suggest to use empty() instead of isset()
  2. use below code and run on your server $ini = ini_get_all(); print_r($ini); many times, your localhost and live server ini settings are different, just run above code on both server and compare it, using, ini_set() you can change your server ini settings
  3. I want to integrate phpbb3 with clipshare(youtube clone) If user login into clipshare CMS, phpbb3 login wont require, it login that user automatically. Anybody have any idea of script or any tool for integration?
  4. About country validation, you need to check country field name and your validation. can you paste validation code here? use multiple phrase and change size =5 in select tag like <select multiple size="5" name="country"> You can select multiple values using control key
  5. dude, do some googling, you will find ample of reference links to validate forms in php
  6. do you wish to apply javascript validation or php validation? Javascript is client side validation and php is server side validations.
  7. you are right phpSensei, it's very true to change code for $_POST variables and values. change $_POST['mail'] to $_POST['email']
  8. I think, you should change hostdetails, check your site configuration file and change mysql_connect with new server details.
  9. are checking mail on your local pc or on web server?
  10. I didn't found move_uploaded_file function to move from tmp folder to destination folder. check http://php.net/manual/en/function.move-uploaded-file.php
  11. Can you paste whole code instead of piece of code. I really need to see $row = mysql_fetch_array($result); $result query of the above code.
  12. 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());
  13. Write below line instead of your current line "<option value=".$nt['id'].">".$nt['country']."</option>"; String concatenation required! please confirm your table field name also.
  14. Can you paste your HTML code here. In your country drop down, use country_id is option value. like <option value="<?php echo $row['country_id']; ?>"><?php echo $row['country_name']; ?></option>
  15. php parse ' quote as a string. So use concatenation in Insert query.
×
×
  • 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.