Jump to content

speciesbeing

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

speciesbeing's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. What to write in the HTML code (the first code). I need field for time and date in the form, so user can insert the time and date.
  2. Hello! I have complete code for one mail form: <form id="form" name="form" method="post" action="contact.php"> <fieldset> <legend>Contact Us</legend> <label for="name"><strong>Name:</strong></label> <input type="text" name="name" id="name" /> <br /><br /> <label for="fromMail"><strong>Email:</strong></label> <input type="text" name="fromMail" id="fromMail" /> <br /><br /> <label for="message"><strong>Your Message:</strong></label> <textarea name="message" cols="30" rows="8" id="message"></textarea> <input type="submit" name="Submit2" value="Send" id="Submit" /> </fieldset> </form> and <?php $to = " stmartin@scientist.com "; $name = $_POST ['name']; $from = $_POST ['fromMail']; $message= $_POST ['message']; mail ( $to, $name, $from, $message ); header("Location: ./thanks.html"); ?> Can you tell me how to put time and date (the user which is sending the form, to write time and date in the form)? ??? Thank you.
  3. why? My encoding is ISO-8859-5, so I need the database equivalent, so later I can convert the symbols into UTF-8.
  4. So the database equivalent of ISO-8859-5 is ISO88595 ? In my case it will be: // Macedonian. 'ISO-8859-5' => 'ISO88595', right?
  5. Hello! I want to ask you one quick question. What is the database equivalent of ISO-8859-5 ? Here are some examples with their equivalents: // Chinese-traditional. 'big5' => 'big5', // Chinese-simplified. 'gbk' => 'gbk', // West European. 'ISO-8859-1' => 'latin1', // Romanian. 'ISO-8859-2' => 'latin2', // Turkish. 'ISO-8859-9' => 'latin5', // Thai. 'tis-620' => 'tis620', // Persian, Chinese, etc. 'UTF-8' => 'utf8', // Russian. 'windows-1251' => 'cp1251', // Greek. 'windows-1253' => 'utf8', // Hebrew. 'windows-1255' => 'utf8', // Arabic. 'windows-1256' => 'cp1256', Thank you.
  6. Thank you very much. It works perfectly. You should upload it on the SMF official mod site. Thanks again.
  7. Thanks for the reply. Before you wrote I installed two mods, from the Modification page of Simple Machines Forums. But, the problem is that I can't see the button of the first one, it only has accept/reject buttons on every post. The other one was not compatible with 1.1.5 smf version. I wonder where you found this one?
  8. I know, but I can't find direct link. Can you please give me the name, or version or something. Thank you.
  9. Hello! Can somebody please tell me where to get the topic-solved mod, which is used on this forum? Thank you.
  10. should I put this before <php tag?
  11. Look. When I start archive.php there are my categories and topics shown (from mysql database), but in ISO-8859-1 encoding (and they appear as hieroglyphs), so I need ISO-8859-5 to get the right characters (cyrillic)
×
×
  • 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.