Jump to content

cyber_ghost

Members
  • Posts

    61
  • Joined

  • Last visited

    Never

About cyber_ghost

  • Birthday 08/06/1986

Profile Information

  • Gender
    Male
  • Location
    canlingo, sabang, danao city, cebu, philippines

cyber_ghost's Achievements

Member

Member (2/5)

0

Reputation

  1. try using a variables which you can predict the username...... or by looping it... so that you can retrieve it after submitting the form...
  2. is there anybody here... already tried to retrieved datas from looped field names ....... looped field names are looped by php (for or while) after submitting the form. like this looped field names : .------------------------------------- add.php <?php for($loop=0;$loop<=10;$loop++) { ?> <input type='text' name='<?php echo "good_".$loop ; ?>' value='<?php echo "value".$loop; ?>'> <?php } ?> ... html code here ------------------------------------------- add.php is this right? ------------------------------------------- received.php for($loop=0;$loop<=10;$loop++) { // field names (looped) $names = ${'good'.$loop}; echo $_POST[$names]; } ------------------------------------------ received.php any help is appreciated....
  3. what i mean is : i cant paste/copy/delete and etc... from the "code view" to any part of the "code view"....
  4. does anyone here experienced that dreamweaver 8 , cant copy code from "code view" and " design view"? even pasting, redo's and undo's are not working to... any idea is appreciated.....
  5. I've been using phpmailer class in sending mails.......... which work perfectly in the xampp..(with corporate smtp server).... but the problem here is that.... when i gonna transfer the page... to PHP/IIS a class give me this error "data_not_accepted".... so what will be the reasons(s) for this email failure? Guys Thank you!..
  6. yes,,, it working......... i downloaded a free smtp server from google.. thank you.. guys... and guys you thank.. hehehehe
  7. ok here is my code: <?php $to = "zoid_active_core@yahoo.com"; $message = "this is a test"; $subject = "mail testing"; if(mail($to,$subject,$message,"From: zoid_active_core@yahoo.com")) echo "sent"; else echo "not sent"; ?> ---- it just display "sent", but when i gonna check my email account....... theres none... the mercury when disabled displayed " Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\xampp\htdocs\fatmalaboo\html\ordering\submitting_order.php on line 20"
  8. its been 2 days of searching the reasons... why does mail() in php cant send email to other web server (e.g. yahoo, gmail, etc), but nobody gives me a details infos.. about this matter......? anyway this is my first time in taking the mail function...... does any body here knows the reasons why does this dump thing happening? im current using xampp, with mercury32 as a mail server.... thank you in advance...
  9. ok .. please see if the php.ini settings > register_globals is set to "On".. this issue about the empty $_POST[] is already one of my head ache last time..... IIS/PHP...... and after setting.. then restart the machine... this thing works for me perfectly... i hope it work for you.... hoping this help.....
  10. thank you................ it working...... hehehh
  11. this is the actual code ---------------------------- form.html <form name="myform" action="record.php" method="post"> <input name="user" type="text"> <input name="pass" type="text"> <input type="submit" value="submit"> </form> -------------------------------/ form.html ------------------------------- record.php echo $_POST[user]; echo $_POST[pass]; -------------------------------/ record.php
  12. yes... i already stop and start procedure... but... nohing change...
  13. i already set in the 8M but work same...
  14. i mean.. that the information you posted above.. is the thing i meant to write... sorry for this..... i didnt make clarification and verification before posting......... im experiencing unstable stomach..... LBM (less bowel movement)as they say....... sorry... meanwhile.... about the problem... is there other configuration needs to be considered about $_POST[] in IIS problem?
  15. sorry guys..... but the thing you been typing is the thing i meant to type.... sorry.. i left for a while.... im experiencing LBM...... hehehe
×
×
  • 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.