Jump to content

sooner

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://programmerspoint.com/

Profile Information

  • Gender
    Not Telling

sooner's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. put <a href="">$row["name']</a> tag around it.
  2. since this the result you need...you have to write some functions to make that number..because in normal if you round that number it won't go to 12.30 or 12.40 as you are expecting.....see php website for the round function..under that many people have some sample codes for different kind of output...see whether you get one from there or you get an idea from there..
  3. i can find a DATE_ADD() function or ADDDATE() function...i don't think there is a dateadd() function thats why it is showing error there...
  4. one thing i notice is you don't need quotes for members...so it can be like this INSERT INTO members..But i don't think this one will rectify the error..this is what i can see..
  5. is the $e is declared before checking is_array($e)...that might be the error...
  6. from the code $this->land in printArticle method value should be empty..i dont see in any part of the code you are assigning a value to it..you have just declared it as protected...
  7. try using is_file($myFile)...then use the unlink()....so that we can check whether a file exist at that path.. if(is_file($myFile)) { unlink($myFile); }
×
×
  • 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.