Jump to content

flyclassic

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

flyclassic's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. what do u mean by different combination? do you have any examples.. ???? or can u show me how? i would greatly appreciated that . thanks btw
  2. $insert ="UPDATE `members` SET (email, password, phone) VALUES ('$_POST','md5($_POST[password])','$_POST[phone]') WHERE `members`.`email` = $_SESSION['email']";
  3. hi, i don't know why, i try to send email using mail() in php, but i kept getting in to HOTMAIL junk mail and "You may not know this sender.Mark as safe|Mark as unsafe" msg.. can someone help? what i used is $header ="From: My Company Support Reply-To: My Company Support Return-Path: My Company Support Message-ID: <1203500814-register@mycompany.com> X-Mailer: PHP v5.1.6 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="492405653a5ce22d452e26cb326e6b6b"; $msg="--b94c57e11de9afec8b9b5c4c0fc511d3_htmlalt Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit ear sdsd, Thank registering with My Company! You are two steps away from logging in and accessing our assignment page or members area. To activate your membership, please click here: http://www.mycompany.com/activate.php?id=18&code=827ccb0eea8a706c4c34a16891f84e7b Once you activate your membership, you will be able to login with the following information: Username: wils0nfu@live.com Password: 12345 If you have any problems regarding the activation of your account, please email to activation@mycompany.com Thanks! Best Regards My Company Email: enquiry@mycompany.com --b94c57e11de9afec8b9b5c4c0fc511d3_htmlalt Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Dear sdsd, hank registering as a tutor with My Company! You are two steps away from logging in and accessing our assignment page or members area. To activate your membership, please click here: http://www.mycompany.com/activate.php?id=18&code=827ccb0eea8a706c4c34a16891f84e7b Once you activate your membership, you will be able to login with the following information: Username: wils0nfu@live.com Password: 12345 If you have any problems regarding the activation of your account, please email to activation@mycompany.com Thanks! Best Regards My Company Email: enquiry@mycompany.com --b94c57e11de9afec8b9b5c4c0fc511d3_htmlalt-- --b94c57e11de9afec8b9b5c4c0fc511d3--" $mail_sent = mail($to, $subject, $msg, $headers); Can somebody helped me to make it so that it is not junk at HOTMAIL ? and receive this msg "You may not know this sender.Mark as safe|Mark as unsafe" . I need to click "Mark as safe" in order to view it.. this is way troublesome for my clients... how ?
  4. pretty cool, i should try later, that means i can insert html tags and using addslashes identify the "?
  5. Hi, anyone how to store these characters(", ') in a mysql field?? because in the " " is very sensitive, how do we store into mysql field? do we have to replace the " with something else first and when called back, we replace back again? any examples on the functions?
  6. yeah, firefox is very case sensitive. for eg. if your form name = form1 and input box name is input1, and if u are passing values to it, the "document" is important for firefox but in IE, it doesn't matter document.form1.input1.values = "test"
  7. is there anyway for my cookie to appear after setting right after without refreshing? any other useful way because, i can't use header (location: ) as i've further html tags inbetween
  8. Hi, i i've a following problem here, For example, i've two php files, signup.php and process.php. The signup only allows user to key in their name and personal info, once submit, it will go into process.php <signup.php> Name - <input name="Name" type=text id="Name" value="<?php echo $_COOKIE['Name'];?>" size=40 maxlength=100> Personal Info - <input name="PInfo" type=text id="PInfo" value="<?php echo $_COOKIE['PInfo'];?>" size=40 maxlength=100> submit button <process.php> setcookie (Pinfo, $_POST['Pinfo']); setcookie (Name, $_POST['Name']); if(!$PInfo ||!$Name){ echo "Personal Info or Name is a required field. Please key in again<br/>"; } include 'signup.php'; exit(); ... ....... ...... . //If the user enters only one of the field, user will be asked to key in again with both fields filled up, and signup.php will be shown up again for user to key in again. Problem here is, the cookie i set doesn't appear in the field straight in the include 'signup.php' section. Unless i relocate back to signup.php it the cookies value won't appear. I want the user not to retype again without going back the previous page, but just retype from there Anybody knows how to solve this problem? I'm not sure if i explain well enough my situation but i hope somebody can help .. :)
  9. hahah, what's the debate all about? Who's genius? I think both are better than moi!
  10. [!--quoteo(post=387580:date=Jun 24 2006, 05:45 PM:name=Barand)--][div class=\'quotetop\']QUOTE(Barand @ Jun 24 2006, 05:45 PM) [snapback]387580[/snapback][/div][div class=\'quotemain\'][!--quotec--] [!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--]... [color=green]WHERE[/color] DATE_FORMAT(date, [color=red]'%Y[span style=\'color:orange\']-[/color]%m[color=orange]-[/color]%d'[/span]) [color=orange]=[/color] [color=red]'2006[span style=\'color:orange\']-[/color]06[color=orange]-[/color]24'[/span] [!--sql2--][/div][!--sql3--] or [!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--]... [color=green]WHERE[/color] date BETWEEN [color=red]'2006[span style=\'color:orange\']-[/color]06[color=orange]-[/color]24 00:00:00'[/span] [color=blue]AND[/color] [color=red]'2006[span style=\'color:orange\']-[/color]06[color=orange]-[/color]24 23:59:59'[/span] [!--sql2--][/div][!--sql3--] [/quote] PHEW!, this is cooly great help! THANK YOU GUYS!
  11. Hi,i've a logic question anybody can help?? if i've following mysql database (primary key id, `date_entry` datetime default NULL,) id | information | date_entry | 01| handsome | 2006-06-24 18:06:19 | 02| handsome1 | 2006-06-24 18:36:12 | 03| handsome 2 | 2006-06-23 19:06:13 | etc... I want to select * columns from date 2006-06-24 only regardless of time OR how do i select by a given date range, how do i go about doing that? any help will be greatly appreciated. THanks
×
×
  • 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.