Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.
  • Welcome to AcornDomains.co.uk, a friendly community for UK domain investors, developers and anyone interested in domain names.

    Whether you're looking to buy or sell domains, learn more about the UK domain market, get feedback on your names, or simply chat with other domainers, you're in the right place. AcornDomains has been bringing together people from across the UK domain industry for many years, from complete beginners to experienced investors.

    Have a look around, join the discussions and, if you haven't already, create a free account and introduce yourself.

wordpress platform posting a lead to an api

Status
Not open for further replies.
Joined
Oct 7, 2004
Posts
68
Reaction score
17
Hi All,

Does anyone have a solution for a wordpress based site that needs to do an automated HTTP post of a web generated lead (with only a couple of form variables, such as name, phone, email, etc) to an API when leads are generated.

Been searching around for some code, but I'm drawing a blank big time. I'm no expert coder but if someone had a code base, I'm sure I could work it out.

Thanks,

Mike
 
Do you have some code from the lead company to paste into a standard web page if so you could hard code it into a custom wordpress page.
 
Guesing you may want just want something like this

Code:
<FORM action="Your API adress here" method="post">
    <P>
    <LABEL for="firstname">First name: </LABEL>
              <INPUT type="text" id="firstname"><BR>
    <LABEL for="lastname">Last name: </LABEL>
              <INPUT type="text" id="lastname"><BR>
    <LABEL for="email">email: </LABEL>
              <INPUT type="text" id="email"><BR>
    <INPUT type="submit" value="Send"> <INPUT type="reset">
    </P>
 </FORM>

Have a look here for some plugins that sound like they may be of some use the last one linked may exactly what you need http://news.softpedia.com/news/Magic-Forms-85273.shtml
 
Status
Not open for further replies.
Top Bottom