Search results

  1. bidzey75

    AS3 / PHP email form HELP

    if you notice in the fla file you can also set other parameters, they're all commented out, but nothing stops you from uncommenting them and tweek the size, and other parameters. some credit also goes to descalzo, I used his idea to find the solution of the mail() function post 16 here site...
  2. bidzey75

    AS3 / PHP email form HELP

    Well it's hard for me to view your problem. Sound like your trying to import that movie into another. I never did that before so I couldn't help you with that. The javascript stuff I highly doubt as anything to do with it. If you want to control the placement of the form you'll need to tweek the...
  3. bidzey75

    How to choose your database

    maybe he ment "My" in the context like "oh my she is beautiful" or... he thinks he owns the technology? but behond that I can't prove it :)
  4. bidzey75

    Database, MySQLl, PHP, site template, blog = Oh GOD!

    well all the luck to you. If you rely on software to code for you that's ok, but if you never learn what it does and why it's doing it, you'll always be confined to the software your using and trapped in it's box. Iknow there's alot of software out there that will design sites for you...
  5. bidzey75

    PHP sending email

    your code as nothing to do with it. Email systems knows when an email is sent by a server and by default many put it in the junk folder. Just go to your email acount and tell it it's not junk, then you will recieve it in your inbox.
  6. bidzey75

    AS3 / PHP email form HELP

    I modified the AS3 class, now if the user leaves name, and message with the default or empty they will be notified and stoped. back up your "contact_form.swf" DO NOT overwrite it with this one, I only tested it locally, and there were considerable changes made to the AS3 code. KEEP a backup...
  7. bidzey75

    AS3 / PHP email form HELP

    what do you want to do? make sure no fields are left empty? As far as the email field goes AS3 is taking care of that already so you don't need to check for it again. You can't anyways, all this is predifiened in the AS3 class and once you compile it to a .SWF file you can't access those fields...
  8. bidzey75

    How to choose your database

    unless your doing something that demands a specific task use the one your most comfortable with. You will create less bugs and less errors. All the one listed here I suspect are all capable of handle the most common everyday tasks. I've been working with oracle for 8 years now and it's super...
  9. bidzey75

    Database, MySQLl, PHP, site template, blog = Oh GOD!

    your asking somebody to write you a book, that's a pretty big question... start here you'll close in on section 8 it's old 2004, but he explains well, and for now that's important, you can always google other sites if you want more recent.
  10. bidzey75

    AS3 / PHP email form HELP

    see my post above, i was modifying it when you posted :) My free account was as stuborn as yours so it should work on your account too also the part of the script where you got "$mail->AddReplyTo" this should be set like this, my comment may not be clear on that one...
  11. bidzey75

    AS3 / PHP email form HELP

    Yes I got it... for some reason it took 5-10 minutes to recieve the email, but I got it. go here and try it out I got it so you'll receive the email. You might have to wait a few minutes if it's like mine. I'm using the SMTP that x10 gave me. Not Gmail, doing so your opening up your gmail...
  12. bidzey75

    AS3 / PHP email form HELP

    the one that worked came from my server not x10, and yes I deleted I just wanted to show you there's nothing wrong with the code itself and it works fine. the one on x10 is different now of the version when I had originally posted. I added PHPMailer to it. It says "sent successfully" but I'm...
  13. bidzey75

    AS3 / PHP email form HELP

    I'm having a boring afternoon so I'm passing time with this :smile: Here is a new zip file. I implimented PHPmailer with the code of contact_form.php. Go to your cpanel get your smtp configurations and change the info. you'll need to put info on line #11, 32, 34, and 35. Basically your...
  14. bidzey75

    AS3 / PHP email form HELP

    I'll try it on the x10 server later, I'm about to leave for work. I had tried it on my personal site could be a different story. if that simple mail function (test.php) did not work that's a problem, and you'll have to take that up with X10, that's as simple as it gets. Probably the problem...
  15. bidzey75

    AS3 / PHP email form HELP

    let see fisrt if your mail function works... create a new php file and put this in it <?php $headers = "From: bryan@lavidapictures.com\r\n"; if(mail("bryan@lavidapictures.com", "this is my subject", "this is my message", $headers)){ echo "email sent"; }else{ echo "email not sent"; } ?> then...
  16. bidzey75

    AS3 / PHP email form HELP

    don't assign the "$to" variable a second time, just erase that line above. when you run this script directly you may not get feed back and just a white page. if you want feedback for sure when you run it directly replace mail($to, $subject, $message, $headers); with if(mail($to...
  17. bidzey75

    AS3 / PHP email form HELP

    i downloaded it and it works fine for me, you just have to open the "contact_form.php" file and make changes to line #17, 25, and 26 replacing the website name and email address. Dont forget to grab the : 1 - "js" folder 2- the code inside the "index.html" file and put it in your own page 3-...
  18. bidzey75

    AS3 / PHP email form HELP

    have you seen this script work somewhere? I find AS3 a bit different than what I'm used to seeing. here is what you got: / Build the varSend variable var varSend:URLRequest = new URLRequest("http://www.lavidapictures.com/contact_parse.php"); varSend.method = URLRequestMethod.POST; varSend.data...
  19. bidzey75

    CSS Float Problem 2

    I think... (emphasize on I THINK ) I understand, and a quick answer is no. someone can correct me if I'm wrong, but if you want an empty block you'll have to specify 3 things. Width, height, and display:block. If by any chance you want your columns to be the same height there are few solutions...
Top