Jump to content

salih0vicX

New Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

salih0vicX's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Well you solved one thing but the variable has no value. Do print($variable) before mail(...) line - it will be empty. So you need to look for a problem in the script where you assigning value to $variable.
  2. Hi, You can't use $variable under single apostrophe (') like that. Try one of following options (I have no WAMP at work to test) and you will understand the point: mail('email@email.com','Application Completed', $name .' has completed the exam',$body); //faster way mail('email@email.com','Application Completed',"$name has completed the exam",$body); mail('email@email.com','Application Completed','${name} has completed the exam',$body); Good luck .
  3. $sql = 'SELECT message_id, user_name, message, date_format(post_time, "%h:%i") as post_time ' . 'FROM message WHERE chat_id = ' . db_input($_GET['chat']) . ' AND message_id > ' . $last .' LIMIT 10'
  4. I found one very interesting - see here: http://www.prestashop.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.