Jump to content

DeanWhitehouse

Members
  • Posts

    2,527
  • Joined

  • Last visited

Everything posted by DeanWhitehouse

  1. google is a friend use it http://www.interfax.net/en/dev/webservice/samples/fax_php_faxstatus.html http://www.google.co.uk/search?q=php+fax+code&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-GB:official&client=firefox-a
  2. Googled: top result MySQL text limits Today’s scary discovery: MySQL TEXT fields have a limit of 65000 bytes. If you insert anything larger than that in to a normal TEXT field mySQL will ... simonwillison.net/2002/Aug/1/mysqlTextLimits/ - 13k -
  3. can you show how you are doing htmlspecialchars?
  4. I have had this, i get it when using frames, if the file is not present. e..g the file has been moved or deleted
  5. ("08-08-08, D, js"); edit: i just fixed your code, so it might be the wrong format still.
  6. In basic include - will include the chosen script, and if not found will produce a non fatal error include_once - will do the same as include but will only include the file once , therefore if you put include for the file more than once in the code it wont include it more than once. require - like include , but will produce fatal error require_once - same as include_once , but again fatal error Anyone correct me if im wrong with anything
  7. no , do something like for($to as $to1) { mail( $to1, "Subject: $subject", $message, "From: $email" ); } that will be for multiple emails
  8. I think phpmailer would be a good choice, and loop through each recipicent and send the email, or i think it is called PEAR::Mail or similar. http://uk.php.net/function.mail
  9. yes and not technically, there is no limit but the script may time out if you use standard mail to send one emails to lots of people.
  10. under the picture?? do you mean on it, and look at image gd functions for resizing and adding text
  11. I think you will need ajax to do it your way, as a link is normally redirecting to another page.
  12. This was answered in your previous topic, and stop asking people to write it for. Look at $_GET[''];
  13. Not looked at your code, but i am guessing that where you check for posting (should be something like , if(isset($_POST[''])) ) you have closed the { (bracket) after the code to show the comment. Not before, so it will only show when posted.
  14. There is an ajax forum, please post in the correct place.
  15. Is it not working?? Please use code tags
  16. Then the topic is solved unless you have another question
  17. If it's solved , mark solved at the bottom.
  18. We have given you everything use preg_match for question 2 , and question one has been anwsered three times.
  19. yer, i am with awardspace , so theres my problem, lolz, it got me stuck for days trying to fix it. So i used phpmailer
  20. oops, didnt read the problem. Please use tags
×
×
  • 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.