Jump to content

kumarkiranm

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male
  • Location
    London

kumarkiranm's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Using $_SERVER['CONTENT_LENGTH'] you can check the posted file size, even if upload fails. And you can inform the user. check this url http://php.net/manual/en/features.file-upload.php
  2. Ofcrs, he should treat 'product' and 'finish' combination as seperate product with respective quantity of each combi.
  3. did you try to save cart in this format?? [cart] -->[product1] ---->[finish]=>array(black, red) ---->[quantity]=>[2] -->[product2] ---->[finish]=>array() ---->[quantity]=>[1]
  4. Use a counter and display the error message out side the while loop. Because you dont have any rows round, control not entering into while loop to display error.
  5. use condition in for loop if $i <= 3 { << Calculation with 50%>> } else { << Calculation with 100% >> }
  6. type crontab -e at linux/unix command prompt type following code (replace path and filename as per your environment) 0 6 * * * /path/to/php -q -f /full/path/to/your/file/sendmail.php Save & Exit (Esc -> :wq)
  7. Hi boss, Check this, this is open source project management tool and good one. http://www.dotproject.net/
  8. what is the problem dude?
  9. try this echo htmlentities($str, ENT_QUOTES); ENT_COMPAT : Will convert double-quotes and leave single-quotes alone. ENT_QUOTES : Will convert both double and single quotes. ENT_NOQUOTES : Will leave both double and single quotes unconverted.
  10. check in this site, you can find the most popular cmses available www.opensourcecms.com
  11. can you post the values you are using? $to_addr, $subject, $this->output, etc.,
  12. This you can achieve, using AJAX. check this article http://www.w3schools.com/PHP/php_ajax_database.asp
×
×
  • 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.