AirTM API: How to Build a Form? Programming Web Development by FarrisFahad … form. Here is an example ... <!-- PAYPAL --> <form action="https://www.paypal.com/cgi-bin/webscr" method… Re: AirTM API: How to Build a Form? Programming Web Development by pritaeas You cannot safely use a form to post directly to AirTM. Post to your own PHP script, which can then use curl to make the request, including headers. Re: AirTM API: How to Build a Form? Programming Web Development by Dani I can see that the URL that you linked me to has 4 steps to create a purchase. The first one is to create a Purchase via an HTTP POST request. That can be done with a cURL request. cURL requests require some backend programming such as via PHP or some other language. Are you using a server-side language to write your web app? If so, which one so… Re: And so the cookie crumbles... Community Center Geeks' Lounge by Dani > My decision were based on the "arrogance" of some moderators, it seemed that the entire site moved away from being a community service to a "I am the boss, do as I say" environment. AndreRet, based on your [latest post](https://www.daniweb.com/programming/databases/threads/541622/improve-having-by-performance#post2296496… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … { // ReCaptcha validation failed, display an error message or take appropriate action // Example: redirect back to the form page with an error… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. Re: How can I make my website easier to use? Programming Web Development by clickempire … for faster loading. **Clear call-to-action (CTA):** Place prominent and clear calls-to-action on every page. Use contrasting colors for… Re: Digital marketing for small businesses? Digital Media Digital Marketing by bessieexum … free promotional tools where possible, and employ clear calls-to-action on your webs. Re: What is the main performance of SEO? Digital Media Digital Marketing Search Engine Strategies by Digital Nilam … measures the percentage of website visitors who take a desired action, such as making a purchase, filling out a form, or… Re: Is there anything special I should pay attention to when doing SEO? Digital Media Digital Marketing Search Engine Strategies by vexanshop …): Prioritize a positive user experience. Easy navigation, clear calls-to-action, and a user-friendly interface contribute to both user satisfaction… Re: Extracting values from capturing groups in regex Programming Software Development by Tom_45 …>?<br /> <form method="post" action="/cgi-bin/popularnames.cgi"> &nbsp; <… Re: How to Determine the Number (and Quality) of Backlinks You Need to Rank? Digital Media Digital Marketing Search Engine Strategies by KomalBhatt To figure out how many and what kind of backlinks you need to rank, check what your competitors are doing and look at industry norms and create a plan of action according to that and also focus on getting good links from reputable sites to do so tools like Ahrefs or Moz can help you see what's working and how to implement your strategy. Re: PHP Contact Form to Send SMS Programming Web Development by geethu_3 Hello, nice tutorial .I used this form but not send sms . Could you please help me solve this problem. Re: PHP Contact Form to Send SMS Programming Web Development by pritaeas What exactly is your problem? As stated in a reply, SourceSMS is no longer available. Re: How to make a submit form that shows website links after submit. Community Center by TheBuzzer action Re: Form without action "imitate" of other Form (which do have action) ??? Programming Web Development by vedmack action=none doesn't work also... after first form submitting of the "problematic form" all other forms starts to behave like it also..... Re: how to use action inside count method of xpath ? Programming Software Development by pritaeas action is the node that is checked/counted GoPro rides into Tour de France 2016 with new security faux pas Hardware and Software Hardware by happygeek Action video camera vendor GoPro has announced that it is riding … affair but not a typical attack scenario for your average action camera user I would imagine. That said, Ken made his… <sction> tag query? Programming Software Development by Premsathishbe <action path="[COLOR="Red"]/[/COLOR]sample" forward="[COLOR="Red"]/[/COLOR]example" /> Help me to know why the highlighted '/' are used @ the starting of the code itself why I cant access my logout page? Programming Web Development by JerrimePatient Action link in my nav menu <li>@Html.ActionLink(&… Re: Displaying the products in the shopping cart Programming Web Development by jstfsklh211 $action = isset($_GET['action']) ? $_GET['action'] : ""; $Quantity = isset($_GET['Quantity']) ? $_GET['Quantity'] : ""; $DVDID = isset($_GET['DVDID']) ? $_GET['DVDID'] : ""; $name = isset($_GET['NameOfTheDVD']) ? $_GET['NameOfTheDVD'] : ""; where do these values come from Re: login script where user can fetch data after login Programming Web Development by minitauros …'] has been set. If it has, the value of $action will be `true`; if it hasn't, it will be…not work as you probably want it to work. `if($action == 'login')` $action will be either `true` or `false`, so the …{ return $_POST['login']; } else { return false; }`. That means that now $action will either be the value of `$_POST['login'];` or `false… Re: comment section php Programming Web Development by hwoarang69 > action='zoom.php?img=<?php echo intval($_GET['img']);?>' i tired that and give me error. may be i type some thing wrong. echo" ... <form class='form' action='zoom.php?img=<?php echo intval($_GET['img']);?>' method='post'> ... "; Re: Password is not going to email Programming Web Development by urtrivedi action="" is missing where is action page which acutally sends mail Re: How to put 1 variable in first page and get value from 2nd page Programming Web Development by Tpojka Action value is showing page that is called with form. If you. If you want contact-us page after submiting, you'll need to put it in form action. I don't know any other way.